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 14c2ec7 commit e7ae478Copy full SHA for e7ae478
1 file changed
.github/workflows/publish.yml
@@ -142,7 +142,6 @@ jobs:
142
uses: actions/setup-node@v4
143
with:
144
node-version: 22
145
- registry-url: https://registry.npmjs.org
146
147
- name: Install dependencies
148
run: bun install
@@ -169,12 +168,8 @@ jobs:
169
168
exit 1
170
fi
171
172
- - name: Debug publish environment
173
- run: |
174
- npm --version
175
- node --version
176
- cat "$NPM_CONFIG_USERCONFIG" 2>/dev/null || echo "no npmrc"
177
- echo "ACTIONS_ID_TOKEN_REQUEST_URL is set: ${{ env.ACTIONS_ID_TOKEN_REQUEST_URL != '' }}"
178
-
179
- name: Publish to npm
180
- run: npm publish --provenance --access public
+ run: |
+ npm config set registry https://registry.npmjs.org/
+ unset NODE_AUTH_TOKEN
+ npm publish --provenance --access public
0 commit comments