Skip to content

Commit

Permalink
Fix build boolean expression
Browse files Browse the repository at this point in the history
  • Loading branch information
John Rood committed Jun 6, 2022
1 parent 579fd95 commit 6c78fcb
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 @@ -84,7 +84,7 @@ jobs:
with:
context: .
platforms: linux/amd64,linux/arm64
push: github.event_name != 'pull_request' && (github.ref_name == 'master' || github.ref_type == 'tag')
push: ${{ github.event_name != 'pull_request' && (github.ref_name == 'master' || github.ref_type == 'tag') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
Expand Down

0 comments on commit 6c78fcb

Please sign in to comment.