File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release to crates.io
2+
3+ on :
4+ push :
5+ tags :
6+ - " v*"
7+
8+ permissions :
9+ contents : read
10+
11+ jobs :
12+ check :
13+ name : Check & Test
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : actions/checkout@v4
17+ - uses : dtolnay/rust-toolchain@stable
18+ - run : cargo clippy -- -D warnings
19+ - run : cargo test
20+
21+ publish :
22+ name : Publish to crates.io
23+ needs : check
24+ runs-on : ubuntu-latest
25+ steps :
26+ - uses : actions/checkout@v4
27+ - uses : dtolnay/rust-toolchain@stable
28+ - run : cargo publish
29+ env :
30+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
Original file line number Diff line number Diff line change 22name = " gitocular"
33version = " 1.0.0"
44edition = " 2024"
5+ authors = [" krfl <2630397+krfl@users.noreply.github.com>" ]
56license = " Apache-2.0"
67description = " A TUI dashboard for monitoring git repository status"
78repository = " https://github.com/krfl/gitocular"
89rust-version = " 1.86"
10+ keywords = [" git" , " tui" , " dashboard" , " terminal" ]
11+ categories = [" command-line-utilities" , " development-tools" ]
912
1013[[bin ]]
1114name = " gitocular"
You can’t perform that action at this time.
0 commit comments