Skip to content

Commit

Permalink
chore(workflow): fix if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
pxseu committed Oct 10, 2021
1 parent 1c17a18 commit 777d1a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish Canary!
if: ${{ steps.tag.outputs.match != 'true' }}
if: ${{ steps.tag.outputs.match == 'true' }}
run: yarn publish --non-interactive --tag canary
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down

0 comments on commit 777d1a7

Please sign in to comment.