Skip to content

Commit

Permalink
fix(ci): only release binary on tag pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
rwxd committed Jan 8, 2024
1 parent 0195e8f commit 7a41d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

release-binary:
runs-on: ubuntu-latest
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/main')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
needs:
- pre-commit
steps:
Expand Down

0 comments on commit 7a41d1b

Please sign in to comment.