Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit 72334e3

Browse files
committed
feat(ci): add workflow_dispatch to release-rust-crates for manual triggers
This allows manually publishing crates when needed, such as when a release was created but the publish step was missing.
1 parent 6aaf55f commit 72334e3

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release-rust-crates.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
name: Release Rust Crates
22

33
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: 'Version to release (without v prefix)'
8+
required: true
9+
type: string
10+
tag:
11+
description: 'Git tag for the release'
12+
required: true
13+
type: string
14+
package:
15+
description: 'Package to release (rust, rust-macros, or both)'
16+
required: false
17+
type: choice
18+
options:
19+
- both
20+
- rust
21+
- rust-macros
22+
default: 'both'
423
workflow_call:
524
inputs:
625
version:

0 commit comments

Comments
 (0)