We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1040f18 commit eabf770Copy full SHA for eabf770
1 file changed
.github/workflows/release.yml
@@ -3,6 +3,7 @@ name: Release
3
on:
4
release:
5
types: [published]
6
+ workflow_dispatch: # manual trigger for re-publishing / recovery
7
8
permissions:
9
contents: read
@@ -26,4 +27,6 @@ jobs:
26
27
- run: pnpm test
28
- run: pnpm build
29
- - run: pnpm publish
30
+ # --no-git-checks: release/dispatch runs on a detached tag, not a branch.
31
+ # --provenance: attach provenance attestation (CI/OIDC only).
32
+ - run: pnpm publish --no-git-checks --provenance
0 commit comments