Skip to content

Commit 49bb93c

Browse files
committed
1 parent 91d8c4d commit 49bb93c

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

static/.github/workflows/publish-on-tag.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
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
1724
- name: Publish
18-
env:
19-
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
2025
run: |
21-
npm config set access public
22-
npm config set registry 'https://wombat-dressing-room.appspot.com/'
23-
npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
2426
npm publish --provenance --access public

0 commit comments

Comments
 (0)