Skip to content

Commit 429eb88

Browse files
authored
fix: use variable instead of value as default for BUILD_HASH (#423)
1 parent 17b20a4 commit 429eb88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fi
4040
4141
if [ $GITHUB_REF_NAME = 'staging' ] || [ $GITHUB_REF_NAME = 'master' ]; then
42-
BUILD_ARGS='BUILD_HASH='${INPUT_SHA:-GITHUB_SHA}
42+
BUILD_ARGS='BUILD_HASH='${INPUT_SHA:-$GITHUB_SHA}
4343
if [ $GITHUB_REF_NAME = 'staging' ]; then
4444
BUILD_ARGS+=$'\nDEPLOY_TARGET=staging'
4545
fi

0 commit comments

Comments
 (0)