We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fd099e commit 28fb21cCopy full SHA for 28fb21c
.github/workflows/publish-packages.yml
@@ -6,7 +6,6 @@ on:
6
- 'v*'
7
8
permissions:
9
- id-token: write
10
contents: read
11
12
jobs:
@@ -21,10 +20,8 @@ jobs:
21
20
22
- uses: actions/setup-node@v4
23
with:
24
- node-version: '24'
25
-
26
- - name: Configure npm registry
27
- run: npm config set registry https://registry.npmjs.org/
+ node-version: '20'
+ registry-url: 'https://registry.npmjs.org'
28
29
- run: npm install
30
@@ -36,6 +33,7 @@ jobs:
36
33
--version=$VERSION
37
34
38
35
- name: Publish to npm
39
- uses: JS-DevTools/npm-publish@v4
40
- with:
41
- package: packages/clients/dist-packages/${{ matrix.state }}/package.json
+ working-directory: packages/clients/dist-packages/${{ matrix.state }}
+ run: npm publish --access public
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments