Skip to content

Commit

Permalink
Only create a new image in case of tag
Browse files Browse the repository at this point in the history
  • Loading branch information
littlejo committed May 29, 2024
1 parent 34d38fd commit 22e305f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ jobs:
- check-diff
- unit-tests
- local-deploy
if: needs.detect-noop.outputs.noop != 'true'
if: startsWith(github.ref, 'refs/tags/v')

steps:
- name: Setup QEMU
Expand Down Expand Up @@ -318,4 +318,4 @@ jobs:
path: _output/**

- name: Publish Artifacts
run: make publish BRANCH_NAME=${GITHUB_REF##*/}
run: make publish BRANCH_NAME=main

0 comments on commit 22e305f

Please sign in to comment.