Skip to content

Commit 436ba57

Browse files
Fix condition
1 parent 79c68fe commit 436ba57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/buildx-bake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
-
2828
name: Generate bake file
2929
run: |
30-
if [ "$GITHUB_REF" != "master" ]
31-
export TAG = $GITHUB_REF
30+
if [ "$GITHUB_REF" != "master" ]; then
31+
export TAG=$GITHUB_REF
3232
fi
3333
cat <<'EOF' > docker-bake.hcl
3434
variable "TAG" {

0 commit comments

Comments
 (0)