Skip to content

Commit 5f025a0

Browse files
committed
Resolve yaml parsing error in CI
! is a special character in yaml, so was causing in error by being outside of the github placeholder evaluation
1 parent 33c7515 commit 5f025a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
name: Build dist & publish
1111
runs-on: ubuntu-latest
12-
if: ! ${{ contains(github.ref, 'dev') || contains(github.ref, 'rc') }}
12+
if: ${{ !contains(github.ref, 'dev') && !contains(github.ref, 'rc') }}
1313

1414
steps:
1515
- name: Checkout the repo and the submodules.

0 commit comments

Comments
 (0)