Skip to content

Commit

Permalink
Merge pull request #187 from openziti/fix.ci.workflow
Browse files Browse the repository at this point in the history
fix paren placement in draft-release conditional
  • Loading branch information
scareything authored Sep 24, 2024
2 parents 20927d1 + 5a9dcb7 commit 29b0454
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 @@ -222,7 +222,7 @@ jobs:
draft-release:
runs-on: ubuntu-latest
needs: [ build ]
if: github.event_name == 'push' && github.ref == ('refs/heads/main' || github.ref == 'refs/heads/alpha')
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha')
steps:
- name: Checkout Project
uses: actions/checkout@v4
Expand Down

0 comments on commit 29b0454

Please sign in to comment.