Skip to content

Commit 0db35c1

Browse files
Fix issue with "skip release "condition in release workflow
1 parent b75809b commit 0db35c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
184184
create-release:
185185
runs-on: ubuntu-latest
186-
if: ${{ github.ref == 'refs/heads/main' && !inputs.skipGhRelease }}
186+
if: ${{ github.ref == 'refs/heads/main' && inputs.skipGhRelease != 'true' }}
187187
permissions:
188188
packages: read
189189
contents: read

0 commit comments

Comments
 (0)