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 91d8c4d commit 49bb93cCopy full SHA for 49bb93c
static/.github/workflows/publish-on-tag.yml
@@ -14,11 +14,13 @@ jobs:
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v4
17
+ - name: Set up Node.js
18
+ uses: actions/setup-node@v4
19
+ with:
20
+ node-version: 20
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 access public
- npm config set registry 'https://wombat-dressing-room.appspot.com/'
- npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
26
npm publish --provenance --access public
0 commit comments