Skip to content

Commit

Permalink
convert conditional to expression
Browse files Browse the repository at this point in the history
  • Loading branch information
rosskevin committed Feb 10, 2024
1 parent 754dbf7 commit 5f92f16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
release:
runs-on: ubuntu-latest
needs: build
if: "env.GITHUB_TOKEN != '' && !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
if: ${{ env.GITHUB_TOKEN != '' && !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') }}
steps:
- uses: actions/checkout@v4
# - uses: 8BitJonny/[email protected]
Expand Down

0 comments on commit 5f92f16

Please sign in to comment.