Skip to content

Commit

Permalink
Refactor ci.yml to include push events in the release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
bekiroguz committed Sep 23, 2024
1 parent 4b767aa commit ec0e519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
name: Publish release
# needs: [ci]
# run on 1) tags starting with v, 2) manual trigger, 3) pushes/merges to master
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master'
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' || github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit ec0e519

Please sign in to comment.