We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1018655 + 6dd0348 commit 063dcbaCopy full SHA for 063dcba
.github/workflows/ci.yml
@@ -49,6 +49,9 @@ jobs:
49
release:
50
runs-on: ubuntu-latest
51
if: github.ref == 'refs/heads/master'
52
+ permissions:
53
+ contents: write
54
+ id-token: write
55
steps:
56
- name: Checkout
57
uses: actions/checkout@v3
@@ -60,10 +63,10 @@ jobs:
60
63
run: |
61
64
git config user.name "${GITHUB_ACTOR}"
62
65
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- - run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
66
- run: yarn release
67
env:
68
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69
+ NPM_CONFIG_PROVENANCE: true
70
deploy-example:
71
72
0 commit comments