Skip to content

Commit

Permalink
Resolve yaml parsing error in CI
Browse files Browse the repository at this point in the history
! is a special character in yaml, so was causing in error by being outside of the github placeholder evaluation
  • Loading branch information
ChrisLovering committed Jan 30, 2024
1 parent 33c7515 commit c449980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
name: Build dist & publish
runs-on: ubuntu-latest
if: ! ${{ contains(github.ref, 'dev') || contains(github.ref, 'rc') }}
if: ${{ !contains(github.ref, 'dev') || !contains(github.ref, 'rc') }}

steps:
- name: Checkout the repo and the submodules.
Expand Down

0 comments on commit c449980

Please sign in to comment.