Skip to content

Commit 5389c33

Browse files
committed
fix: RELEASE_RUNNUMBER calculation in docker-publish workflow
1 parent 0a87fb8 commit 5389c33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
VERSION=`cat storage/VERSION`
2828
echo "RELEASE_VER=$(echo $VERSION)" >> $GITHUB_ENV
29-
echo "RELEASE_RUNNUMBER=$(echo ($GITHUB_RUN_NUMBER+874))" >> $GITHUB_ENV
29+
echo "RELEASE_RUNNUMBER=$(($GITHUB_RUN_NUMBER+874))" >> $GITHUB_ENV
3030
3131
# Set up BuildKit Docker container builder to be able to build
3232
# multi-platform images and export cache

0 commit comments

Comments
 (0)