We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4438fc8 commit d82cc0bCopy full SHA for d82cc0b
.github/workflows/publish.yml
@@ -24,6 +24,7 @@ jobs:
24
25
permissions:
26
contents: "write" # to create new branches and releases
27
+ id-token: "write" # OIDC token for publishing to NPM with provenance
28
pull-requests: "write" # to create new pull requests for changesets
29
30
steps:
crates/infra/cli/src/commands/publish/npm/mod.rs
@@ -35,6 +35,7 @@ impl NpmController {
35
36
let mut command = Command::new("npm")
37
.args(["publish", package_dir.unwrap_str()])
38
+ .flag("--provenance")
39
.property("--access", "public");
40
41
if self.dry_run.get() {
0 commit comments