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 c3b6e38 commit 6ce599dCopy full SHA for 6ce599d
1 file changed
.github/workflows/npm-publish.yml
@@ -29,7 +29,9 @@ jobs:
29
# OIDC trusted publishing (tokenless) requires npm >= 11.5.1.
30
# Node 22 (lts/jod) ships npm 10, so upgrade explicitly.
31
- name: Upgrade npm for trusted publishing
32
- run: npm install -g npm@latest
+ run: |
33
+ npm install -g npm@latest
34
+ echo "npm version after upgrade: $(npm -v)"
35
36
- name: Build bashunit single-file binary
37
shell: bash
@@ -44,4 +46,6 @@ jobs:
44
46
# Configure the trusted publisher once at npmjs.com -> bashunit -> Settings.
45
47
# Provenance is generated automatically.
48
- name: Publish to npm
- run: npm publish --access public
49
50
+ echo "publishing with npm $(npm -v)"
51
+ npm publish --access public
0 commit comments