Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
ci: use boolean comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
moltar committed Dec 15, 2020
1 parent b07cbd7 commit d33a1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: npm run semantic-release

- name: Publish as mws
if: !contains(steps.semantic_release.outputs.*, 'There are no relevant changes, so no new version is released')
if: contains(steps.semantic_release.outputs.*, 'There are no relevant changes, so no new version is released') == false
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down

0 comments on commit d33a1a0

Please sign in to comment.