Skip to content

Commit ccb11b6

Browse files
fix: add workflow_dispatch trigger to crates publish workflow (#313)
The release:published event doesn't fire when GitHub releases are created by other actions (using GITHUB_TOKEN), which prevents automatic crates.io publishing. Adding workflow_dispatch allows manual triggering as a fallback.
1 parent 21cee12 commit ccb11b6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/publish-crates.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Publish to crates.io
33
on:
44
release:
55
types: [published]
6+
workflow_dispatch:
67

78
env:
89
CARGO_TERM_COLOR: always

0 commit comments

Comments
 (0)