Skip to content

Commit

Permalink
fix CI to run on release again (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
chdsbd authored Apr 25, 2022
1 parent 329d055 commit b6421ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

build-linux:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/')

runs-on: ubuntu-latest

Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:

build-mac:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/')

runs-on: macos-latest

Expand Down

0 comments on commit b6421ea

Please sign in to comment.