File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ workflow_dispatch : {}
5+ push :
6+ tags :
7+ - " v*.*.*"
8+
9+ env :
10+ CARGO_TERM_COLOR : always
11+ SOLANA_VERSION : " 1.7.11"
12+ RUST_TOOLCHAIN : nightly-2021-09-07
13+
14+ jobs :
15+ release-crate :
16+ runs-on : ubuntu-latest
17+ name : Release crate on crates.io
18+ steps :
19+ - uses : actions/checkout@v2
20+ - name : Install Rust nightly
21+ uses : actions-rs/toolchain@v1
22+ with :
23+ override : true
24+ profile : minimal
25+ toolchain : ${{ env.RUST_TOOLCHAIN }}
26+ - uses : Swatinem/rust-cache@v1
27+ - name : Publish crates
28+ run : cargo publish --token ${{ secrets.CARGO_PUBLISH_TOKEN }}
29+ - name : Release
30+ uses : softprops/action-gh-release@v1
Original file line number Diff line number Diff line change 11[package ]
22name = " vipers"
3- version = " 0.1.1 "
3+ version = " 1.0.0 "
44description = " Assorted checks and validations for writing safer Solana programs."
55homepage = " https://saber.so"
66repository = " https://github.com/saber-hq/vipers"
You can’t perform that action at this time.
0 commit comments