Skip to content

Commit b189230

Browse files
committed
fix(ci): add logging for computed VERSION_NUMBER in ARM, Linux, MacOS, and Windows workflows
1 parent 20fa585 commit b189230

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/workflows/make-plugin-arm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
fi
2626
VERSION="${VERSION//\//-}"
2727
echo "VERSION_NUMBER=$VERSION" >> "$GITHUB_ENV"
28+
echo "Computed VERSION_NUMBER=$VERSION"
2829
- name: Setup Zig
2930
run: |
3031
mkdir -p $HOME/.local/bin $HOME/.local/zig

.github/workflows/make-plugin-linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
fi
2424
VERSION="${VERSION//\//-}"
2525
echo "VERSION_NUMBER=$VERSION" >> "$GITHUB_ENV"
26+
echo "Computed VERSION_NUMBER=$VERSION"
2627
- name: Build plugin docker image
2728
run: docker compose build --no-cache prereqs protoc-plugin
2829
- name: Copy binary from Docker image

.github/workflows/make-plugin-mac-os.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
# Minimal sanitization: replace slashes with dashes to keep filenames valid
3131
VERSION="${VERSION//\//-}"
3232
echo "VERSION_NUMBER=$VERSION" >> "$GITHUB_ENV"
33+
echo "Computed VERSION_NUMBER=$VERSION"
3334
- name: Install Bazelisk (Bazel)
3435
run: |
3536
brew update

.github/workflows/make-plugin-windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
fi
2424
VERSION="${VERSION//\//-}"
2525
echo "VERSION_NUMBER=$VERSION" >> "$GITHUB_ENV"
26+
echo "Computed VERSION_NUMBER=$VERSION"
2627
shell: bash
2728
- name: Print Bazel version
2829
run: |

0 commit comments

Comments
 (0)