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 d829981 commit 5b7ed76Copy full SHA for 5b7ed76
.github/workflows/npm-publish.yml
@@ -6,7 +6,7 @@ on:
6
7
permissions:
8
id-token: write
9
- contents: read
+ contents: write
10
11
jobs:
12
test:
@@ -63,6 +63,8 @@ jobs:
63
64
- name: Upload release assets
65
uses: softprops/action-gh-release@v1
66
+ env:
67
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
68
with:
69
files: |
70
dist/bundle.js
scripts/publish.sh
@@ -7,4 +7,4 @@ PACKAGE_NAME=$(cat package.json | jq -r '.name')
PUBLISH_VERSION=$(cat package.json | jq -r '.version')
echo "Publishing ${PACKAGE_NAME}@$PUBLISH_VERSION"
-npm publish --access public
+npm publish --access public --provenance
0 commit comments