File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -42,15 +42,17 @@ jobs:
4242 TIMESTAMP=$(date +'%Y%m%d')
4343 SHA=$(git rev-parse --short HEAD)
4444 echo "build_tag=nightly-${TIMESTAMP}-${SHA}" >> $GITHUB_OUTPUT
45+ echo "Generated build tag: nightly-${TIMESTAMP}-${SHA}"
4546
4647 # expose a separate tag for testing purposes
4748 echo "test_tag=nightly-test-${TIMESTAMP}-${SHA}" >> $GITHUB_OUTPUT
49+ echo "Generated test tag: nightly-test-${TIMESTAMP}-${SHA}"
4850
4951 - name : Build image for testing
5052 uses : docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # 6.18.0
5153 with :
5254 context : source/typescript-node
53- platforms : linux/amd64,linux/arm64
55+ platforms : linux/amd64
5456 push : false
5557 load : true
5658 tags : |
Original file line number Diff line number Diff line change @@ -54,17 +54,19 @@ jobs:
5454 echo "Error: Release name '$RELEASE_NAME' is not a valid semantic version"
5555 exit 1
5656 fi
57+ echo "Generated build tag: $CLEAN_VERSION"
5758
5859 # expose a separate tag for testing purposes
5960 TIMESTAMP=$(date +'%Y%m%d')
6061 SHA=$(git rev-parse --short HEAD)
6162 echo "test_tag=test-${TIMESTAMP}-${SHA}" >> $GITHUB_OUTPUT
63+ echo "Generated test tag: test-${TIMESTAMP}-${SHA}"
6264
6365 - name : Build image for testing
6466 uses : docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # 6.18.0
6567 with :
6668 context : source/typescript-node
67- platforms : linux/amd64,linux/arm64
69+ platforms : linux/amd64
6870 push : false
6971 load : true
7072 tags : |
You can’t perform that action at this time.
0 commit comments