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 524293aCopy full SHA for 524293a
1 file changed
.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'
62
- run: node scripts/release.js --dry-run --tag ${{ github.event.inputs.tag }}
+ if: inputs.dry_run
+ run: node scripts/release.mjs --dry-run --tag ${{ inputs.tag }}
63
64
- - name: Dry run release to npm
65
- if: inputs.dry_run == 'false'
66
- run: node scripts/release.js --tag ${{ github.event.inputs.tag }}
+ - name: Release to npm
+ if: ${{ !inputs.dry_run }}
+ run: node scripts/release.mjs --tag ${{ inputs.tag }}
0 commit comments