Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  feat: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
  • Loading branch information
FairyEver committed Sep 16, 2023
2 parents ea20fe2 + 40d1ed1 commit f516b62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
publish:
if: ! contains(github.event.head_commit.message, '[skip ci]')
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit f516b62

Please sign in to comment.