Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@
# Trusted publishing requires Node >= 22.14.0 and npm >= 11.5.1, which is why
# we pin `node-version: latest` here. The `id-token: write` permission below
# is what allows GitHub Actions to mint the OIDC token npm uses to verify us.
#
# Provenance: each publishable package sets `publishConfig.provenance: true` in
# its package.json, so `npm publish` (invoked by `changeset publish`) generates
# npm provenance attestations. This relies on the `id-token: write` permission
# and a GitHub-hosted runner. See:
# https://docs.npmjs.com/generating-provenance-statements

name: Release

Expand Down
3 changes: 3 additions & 0 deletions packages/blob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"url": "https://github.com/vercel/storage.git",
"directory": "packages/blob"
},
"publishConfig": {
"provenance": true
},
"license": "Apache-2.0",
"sideEffects": false,
"type": "module",
Expand Down
3 changes: 3 additions & 0 deletions packages/edge-config-fs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"url": "https://github.com/vercel/storage.git",
"directory": "packages/edge-config-fs"
},
"publishConfig": {
"provenance": true
},
"license": "Apache-2.0",
"sideEffects": false,
"type": "module",
Expand Down
3 changes: 3 additions & 0 deletions packages/edge-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"url": "https://github.com/vercel/storage.git",
"directory": "packages/edge-config"
},
"publishConfig": {
"provenance": true
},
"license": "Apache-2.0",
"sideEffects": false,
"type": "module",
Expand Down
Loading