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 59b968d commit 257913aCopy full SHA for 257913a
.github/workflows/npm_release.yml
@@ -177,7 +177,13 @@ jobs:
177
if: ${{ vars.USE_NPM_TOKEN != 'true' }}
178
run: |
179
echo "Publishing @nativescript/ios@$NPM_VERSION to NPM with tag $NPM_TAG via OIDC trusted publishing..."
180
+ unset NODE_AUTH_TOKEN
181
+ if [ -n "${NPM_CONFIG_USERCONFIG:-}" ]; then
182
+ rm -f "$NPM_CONFIG_USERCONFIG"
183
+ fi
184
npm publish ./dist/nativescript-ios-${{env.NPM_VERSION}}.tgz --tag $NPM_TAG --access public --provenance
185
+ env:
186
+ NODE_AUTH_TOKEN: ""
187
188
- name: Publish package (granular token)
189
if: ${{ vars.USE_NPM_TOKEN == 'true' }}
0 commit comments