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 d696d2d commit 5b04eebCopy full SHA for 5b04eeb
.github/workflows/publish-on-tag.yml
@@ -14,14 +14,17 @@ 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-file: '.nvmrc'
21
+ registry-url: 'https://registry.npmjs.org'
22
+ - name: Update npm
23
+ run: npm install -g npm@latest
24
- name: Install dependencies
25
run: npm install
26
- name: Build
27
run: npm run build
28
- name: Publish
- env:
- NPM_TOKEN: ${{secrets.NPM_TOKEN}}
29
run: |
- npm config set registry 'https://wombat-dressing-room.appspot.com/'
- npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
30
npm publish --provenance --access public
0 commit comments