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 b4246f2 commit b7cda17Copy full SHA for b7cda17
.github/workflows/publish-on-tag.yml
@@ -8,13 +8,19 @@ on:
8
jobs:
9
publish:
10
runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ id-token: write
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v5
17
+ - name: Set up Node.js
18
+ uses: actions/setup-node@v4
19
+ with:
20
+ node-version-file: '.nvmrc'
21
+ registry-url: 'https://registry.npmjs.org'
22
+ - name: Update npm
23
+ run: npm install -g npm@latest
24
- name: Publish
- env:
- NPM_TOKEN: ${{secrets.NPM_TOKEN}}
25
run: |
- npm config set registry 'https://wombat-dressing-room.appspot.com/'
- npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
- npm publish
26
+ npm publish --provenance --access public
0 commit comments