We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed0c37e commit 14921ebCopy full SHA for 14921eb
.github/workflows/publish-release.yml
@@ -6,7 +6,7 @@ jobs:
6
name: Install and publish
7
runs-on: ubuntu-latest
8
permissions:
9
- id-token: write
+ id-token: write # Required for OIDC
10
contents: write # allows this workflow to commit to the repo
11
steps:
12
- name: Checkout
@@ -24,6 +24,7 @@ jobs:
24
uses: actions/setup-node@v4
25
with:
26
node-version: 'lts/*'
27
+ registry-url: 'https://registry.npmjs.org'
28
29
- name: Enable Corepack and Use Correct Yarn Version
30
run: |
@@ -68,9 +69,6 @@ jobs:
68
69
- name: Build lib
70
run: yarn prepare
71
- - name: Authenticate with registry
72
- run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_AUTOMATION_TOKEN }}
73
-
74
- name: Publish
75
76
chmod +x ./scripts/add_build_number.sh
0 commit comments