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 67cf3bb commit c3ecf62Copy full SHA for c3ecf62
.github/workflows/release-latest.yaml
@@ -432,16 +432,19 @@ jobs:
432
if: steps.checks.outputs.has_new_release == 'true'
433
working-directory: ${{ matrix.package }}
434
shell: bash
435
- env:
436
- NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
437
run: npm run pack
438
-
+
+ # nuke, so npm can use OIDC
+ - name: Remove temp npmrc
439
+ run: rm -f "$NPM_CONFIG_USERCONFIG"
440
- name: Publish
441
442
443
444
+ # force empty so npm can use OIDC
445
env:
446
+ NODE_AUTH_TOKEN: ""
447
+ NPM_TOKEN: ""
448
run: |
449
version="${{ steps.checks.outputs.version }}"
450
0 commit comments