Skip to content

Commit

Permalink
fix: switch operator for if check on release
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewwylde committed Oct 4, 2023
1 parent 8e2489c commit 5827e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push]
jobs:
release:
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, 'ci skip') == 'false' && contains(github.event.head_commit.message, 'skip ci') == 'false'
if: contains(github.event.head_commit.message, 'ci skip') == 'false' || contains(github.event.head_commit.message, 'skip ci') == 'false'
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 5827e53

Please sign in to comment.