We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03f8143 commit 2afe356Copy full SHA for 2afe356
.github/workflows/release.yml
@@ -58,9 +58,9 @@ jobs:
58
run: pnpm run test
59
60
- name: Dry run release to npm
61
- if: inputs.dry_run == 'true'
+ if: inputs.dry_run
62
run: node scripts/release.js --dry-run --tag ${{ github.event.inputs.tag }}
63
64
- - name: Dry run release to npm
65
- if: inputs.dry_run == 'false'
+ - name: Release to npm
+ if: ${{ !inputs.dry_run }}
66
run: node scripts/release.js --tag ${{ github.event.inputs.tag }}
0 commit comments