Skip to content

Commit

Permalink
fix conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkarlsen committed Sep 9, 2023
1 parent c8ddc24 commit 45ce331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
make docker-buildx VERSION=${{ env.VERSION }}
- name: bundle
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags')
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
run: |
make bundle bundle-build bundle-push VERSION=${{ env.VERSION }}
- name: catalog
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags')
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
run: |
make catalog-build catalog-push VERSION=${{ env.VERSION }}

0 comments on commit 45ce331

Please sign in to comment.