Skip to content

Commit 9f30def

Browse files
authored
Upgrade JS-DevTools/npm-publish to v2 (#3456)
- Upgrade JS-DevTools/npm-publish to v2.2.0 - Remove workaround for bug JS-DevTools/npm-publish#15 - Remove usage of `jq` in favor of npm-publish output Signed-off-by: Michael Cousins <[email protected]>
1 parent 9b175a4 commit 9f30def

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/release-npm.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,16 @@ jobs:
2424

2525
- name: 🚀 Publish to npm
2626
id: npm-publish
27-
uses: JS-DevTools/npm-publish@0f451a94170d1699fd50710966d48fb26194d939 # v1
27+
uses: JS-DevTools/npm-publish@a25b4180b728b0279fca97d4e5bccf391685aead # v2.2.0
2828
with:
2929
token: ${{ secrets.NPM_TOKEN }}
3030
access: public
3131
tag: next
32+
ignore-scripts: false
3233

3334
- name: 🎖️ Add `latest` dist-tag to final releases
34-
if: github.event.release.prerelease == false
35-
run: |
36-
package=$(cat package.json | jq -er .name)
37-
npm dist-tag add "$package@$release" latest
35+
if: github.event.release.prerelease == false && steps.npm-publish.outputs.id
36+
run: npm dist-tag add "$release" latest
3837
env:
39-
# JS-DevTools/npm-publish overrides `NODE_AUTH_TOKEN` with `INPUT_TOKEN` in .npmrc
40-
INPUT_TOKEN: ${{ secrets.NPM_TOKEN }}
41-
release: ${{ steps.npm-publish.outputs.version }}
38+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
39+
release: ${{ steps.npm-publish.outputs.id }}

0 commit comments

Comments
 (0)