File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish
2+
3+ on :
4+ push :
5+ tags : [ "**" ]
6+
7+ env :
8+ RUST_LOG : debug
9+ CARGO_TERM_COLOR : always
10+ RUST_BACKTRACE : " 1"
11+ RUSTFLAGS : " -D warnings"
12+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
13+
14+ jobs :
15+ publish :
16+ name : Publish
17+
18+ runs-on : ubuntu-latest
19+ steps :
20+ - name : Checkout
21+ uses : actions/checkout@v2
22+
23+ - name : Install Rust Stable
24+ uses : actions-rs/toolchain@v1
25+ with :
26+ toolchain : stable
27+ override : true
28+
29+ - name : Cargo publish
30+ uses : actions-rs/cargo@v1
31+ with :
32+ command : publish
Original file line number Diff line number Diff line change 11[package ]
22name = " fastcgi-client"
3- version = " 0.8.0"
3+ version = " 0.8.0-alpha.1 "
44authors = [" jmjoy <918734043@qq.com>" ]
55edition = " 2018"
66description = " Fastcgi client implemented for Rust."
You can’t perform that action at this time.
0 commit comments