Skip to content

Commit 760d55a

Browse files
committed
Add node version display step in dockerimage workflow
Adds a display step to show the LATEST_VERSION being built, improving visibility and consistency with the update-current-image workflow.
1 parent 60c11a2 commit 760d55a

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/dockerimage.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ jobs:
4747
- name: Get latest node version
4848
run: echo "LATEST_VERSION=$(curl -fsSLo- --compressed https://nodejs.org/dist/index.json | jq '.[].version' | tr -d '"' | tr -d 'v' | head -1)" >> $GITHUB_ENV
4949

50+
- name: Display Node Version
51+
run: |
52+
echo "Building Node.js version: $LATEST_VERSION"
53+
5054
- name: Build Node
5155
run: |
5256
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"

0 commit comments

Comments
 (0)