Skip to content

Commit 3278880

Browse files
committedDec 19, 2024
chore: Enable provenance
1 parent 03aec1c commit 3278880

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎.github/workflows/ci-cd.yml

+5
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,11 @@ jobs:
231231
cd:
232232
name: Deployment
233233
runs-on: ubuntu-24.04
234+
permissions:
235+
contents: write # to be able to publish a GitHub release
236+
issues: write # to be able to comment on released issues
237+
pull-requests: write # to be able to comment on released pull requests
238+
id-token: write # to enable use of OIDC for NPM provenance
234239
needs:
235240
- lint
236241
- ci-core

‎packages/nuqs/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"react-router"
3030
],
3131
"publishConfig": {
32-
"access": "public"
32+
"access": "public",
33+
"provenance": true
3334
},
3435
"files": [
3536
"dist/",

0 commit comments

Comments
 (0)
Failed to load comments.