Skip to content

Commit

Permalink
Fix conditional check
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrunyon committed Jul 16, 2024
1 parent 6338eb2 commit 339d30c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
if: ${{ inputs.plan == '' || fromJson(inputs.plan).announcement_tag_is_implicit }}
run: npm publish --dry-run crates/ruff_wasm/pkg
- name: "Publish"
if: ! ${{ inputs.plan == '' || fromJson(inputs.plan).announcement_tag_is_implicit }}
if: ${{ inputs.plan != '' && !fromJson(inputs.plan).announcement_tag_is_implicit }}
run: npm publish --provenance --access public crates/ruff_wasm/pkg
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 339d30c

Please sign in to comment.