File tree Expand file tree Collapse file tree 2 files changed +31
-4
lines changed
Expand file tree Collapse file tree 2 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 1+ # adapted from https://github.com/taiki-e/cargo-hack/blob/main/.github/workflows/release.yml
2+
3+ name : Publish releases to GitHub
4+ on :
5+ push :
6+ tags :
7+ - ' *'
8+
9+ jobs :
10+ create-release :
11+ if : github.repository_owner == 'sunshowers-code'
12+ runs-on : ubuntu-18.04
13+ steps :
14+ - uses : actions/checkout@v2
15+ with :
16+ persist-credentials : false
17+ - name : Install Rust
18+ uses : actions-rs/toolchain@v1
19+ with :
20+ toolchain : stable
21+ override : true
22+ - run : cargo publish
23+ env :
24+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
25+ - uses : taiki-e/create-gh-release-action@v1
26+ with :
27+ changelog : CHANGELOG.md
28+ title : debug-ignore $version
29+ branch : main
30+ env :
31+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## [ 0.2.1] - 2022-03-09
4-
5- Add documentation about nextest-metadata's "minimum supported cargo-nextest version".
6-
73## [ 1.0.2] - 2022-03-17
84
95### Added
You can’t perform that action at this time.
0 commit comments