Commit 307fad5 1 parent feae019 commit 307fad5 Copy full SHA for 307fad5
File tree 2 files changed +20
-11
lines changed
2 files changed +20
-11
lines changed Original file line number Diff line number Diff line change
1
+ # see https://release-plz.ieni.dev/docs/github for more information
2
+
1
3
name : Release
2
4
3
5
permissions :
4
6
pull-requests : write
5
7
contents : write
6
8
7
9
on :
8
- push :
9
- branches :
10
- - main
11
- workflow_dispatch :
10
+ workflow_call :
11
+ secrets :
12
+ CARGO_REGISTRY_TOKEN :
13
+ description : " Token to publish to crates.io"
14
+ required : true
15
+
12
16
jobs :
13
17
release-plz :
14
- uses : joshka/github-workflows/.github/workflows/rust-release-plz.yml@main
15
- permissions :
16
- pull-requests : write
17
- contents : write
18
- secrets :
19
- CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
18
+ name : Release-plz
19
+ runs-on : ubuntu-latest
20
+ steps :
21
+ - uses : actions/checkout@v4
22
+ with :
23
+ fetch-depth : 0
24
+ - uses : dtolnay/rust-toolchain@stable
25
+ -
uses :
MarcoIeni/[email protected]
26
+ env :
27
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
28
+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tui-cards"
3
- version = " 0.2.1 "
3
+ version = " 0.2.2 "
4
4
description = " A playing card widget for Ratatui"
5
5
documentation = " https://docs.rs/tui-cards"
6
6
You can’t perform that action at this time.
0 commit comments