We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 872b75f + ef72729 commit a9a7032Copy full SHA for a9a7032
1 file changed
.github/workflows/publish.yml
@@ -10,6 +10,7 @@ jobs:
10
runs-on: ubuntu-latest
11
permissions:
12
contents: write
13
+ id-token: write # Required for OIDC
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v4
@@ -58,9 +59,9 @@ jobs:
58
59
- name: Publish to npm
60
if: steps.check_tag.outputs.exists == 'false'
61
working-directory: cli
- run: npm publish --access public
62
+ run: npm publish --access public --provenance
63
env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
64
+ NPM_CONFIG_PROVENANCE: true
65
66
- name: Create and push tag
67
0 commit comments