Skip to content

Commit 14e7c63

Browse files
committed
ci: fix condition
1 parent ca3e4c6 commit 14e7c63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,15 +234,15 @@ jobs:
234234
needs:
235235
- init
236236
- publish
237-
if: needs.init.outputs.prerelease == 'false'
237+
if: needs.init.outputs.prerelease != 'true'
238238
uses: ./.github/workflows/pages.yaml
239239

240240
brew:
241241
needs:
242242
- init
243243
- publish
244244
runs-on: ubuntu-latest
245-
if: needs.init.outputs.prerelease == 'false'
245+
if: needs.init.outputs.prerelease != 'true'
246246

247247
steps:
248248
- uses: ./.github/workflows/brew.yaml

0 commit comments

Comments
 (0)