Skip to content

Commit

Permalink
Put push condition within curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
tmeire committed Aug 26, 2024
1 parent cca6209 commit 5edbcba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: docker/build-push-action@v6
with:
target: production
push: ${{ env.GITHUB_REF_TYPE }} == "tag"
push: ${{ env.GITHUB_REF_TYPE == "tag" }}
build-args: |
VERSION=${{ env.VERSION }}
tags: ghcr.io/blackskad/go-web-scaffold:${{ env.VERSION }}

0 comments on commit 5edbcba

Please sign in to comment.