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 667e65c commit 6fbc92cCopy full SHA for 6fbc92c
.github/workflows/publish.yml
@@ -27,7 +27,7 @@ jobs:
27
runs-on: ubuntu-latest
28
permissions:
29
contents: read
30
- id-token: write # Required for provenance
+ id-token: write # Required for provenance and OIDC authentication
31
32
steps:
33
- name: Checkout
@@ -53,8 +53,6 @@ jobs:
53
- name: Publish packages (automatic on push)
54
if: github.event_name == 'push'
55
run: node scripts/publish.mjs --provenance
56
- env:
57
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
58
59
- name: Publish packages (manual trigger)
60
if: github.event_name == 'workflow_dispatch'
@@ -70,5 +68,3 @@ jobs:
70
68
ARGS="$ARGS --provenance"
71
69
fi
72
node scripts/publish.mjs $ARGS
73
74
0 commit comments