We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8dd858 commit 521d8ddCopy full SHA for 521d8dd
.github/workflows/publish.yaml
@@ -14,7 +14,7 @@ env:
14
jobs:
15
create-github-prerelease:
16
runs-on: ubuntu-latest
17
- if: github.event_name == 'push' && contains(github.ref_name, 'rc')
+ if: ${{ github.event_name == 'push' && contains(github.ref_name, 'rc') }}
18
permissions:
19
contents: write
20
@@ -32,7 +32,7 @@ jobs:
32
33
create-github-release:
34
35
- if: github.event_name == 'push' && !contains(github.ref_name, 'rc')
+ if: ${{ github.event_name == 'push' && !contains(github.ref_name, 'rc') }}
36
37
38
0 commit comments