We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39c21e3 commit 9adf6f4Copy full SHA for 9adf6f4
1 file changed
.github/workflows/release.yml
@@ -28,14 +28,6 @@ jobs:
28
with:
29
node-version: '22'
30
registry-url: 'https://registry.npmjs.org'
31
- token: ${{ secrets.GITHUB_TOKEN }}
32
-
33
- - name: Configure NPM for OIDC
34
- run: |
35
- cat > ~/.npmrc << EOF
36
- @crispthinking:registry=https://registry.npmjs.org/
37
- registry=https://registry.npmjs.org/
38
- EOF
39
40
- name: Set version from tag or input
41
run: |
@@ -62,11 +54,10 @@ jobs:
62
54
63
55
echo "Publishing version: $PACKAGE_VERSION"
64
56
cat package.json | grep -A2 '"name"'
65
- echo "Checking npm config:"
66
- npm config get registry
67
- npm config get //registry.npmjs.org/:_authToken
68
57
npm ci
69
58
npm run codegen
70
59
npm run build:release
71
60
npm publish --provenance --access public
72
61
name: Build and Publish
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments