Skip to content

Commit 6ca7eca

Browse files
committed
ci(release): add workflow_dispatch trigger
Lets us re-run the release pipeline against an existing tag without force-pushing the tag. Push the tag triggers the run normally; workflow_dispatch is for retries after an infra-side fix (e.g. enabling attestation by flipping the repo public).
1 parent 83ed3ee commit 6ca7eca

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Release
33
on:
44
push:
55
tags: ['v*']
6+
# Manual re-runs against an existing tag without force-pushing. Set
7+
# `ref` to the tag (e.g. `v0.2.0`) when dispatching.
8+
workflow_dispatch:
69

710
permissions:
811
contents: write # upload release assets

0 commit comments

Comments
 (0)