We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d80ab70 commit 9ca4df0Copy full SHA for 9ca4df0
.github/workflows/build-npm.yml
@@ -3,6 +3,11 @@ on: workflow_dispatch
3
jobs:
4
build:
5
runs-on: ubuntu-latest
6
+ permissions:
7
+ contents: write # to be able to publish a GitHub release
8
+ issues: write # to be able to comment on released issues
9
+ pull-requests: write # to be able to comment on released pull requests
10
+ id-token: write # to enable use of OIDC for npm provenance
11
env:
12
WORKING_DIRECTORY: ./
13
INPUT_TOKEN: ${{ secrets.NPM_TOKEN }}
packages/skia/package.json
@@ -1,7 +1,8 @@
1
{
2
"name": "@shopify/react-native-skia",
"publishConfig": {
- "access": "public"
+ "access": "public",
+ "provenance": true
},
"bin": {
"setup-skia-web": "./scripts/setup-canvaskit.js"
0 commit comments