Skip to content

Commit

Permalink
replace || with && in cicd publish
Browse files Browse the repository at this point in the history
  • Loading branch information
janf committed Nov 27, 2023
1 parent ad8feb3 commit 1e73092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
context: .
file: Dockerfile
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')}}
push: ${{ github.ref == 'refs/heads/main' && startsWith(github.ref, 'refs/tags/v')}}
tags: |
${{ steps.meta.outputs.tags }}
Expand Down

0 comments on commit 1e73092

Please sign in to comment.