File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - v[0-9]+.*
7
+
8
+ env :
9
+ RUSTFLAGS : -D warnings
10
+ RUST_BACKTRACE : 1
11
+
12
+ jobs :
13
+ create-release :
14
+ if : github.repository_owner == 'smol-rs'
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - name : Install Rust
19
+ run : rustup update stable
20
+ - run : cargo package
21
+ - uses : taiki-e/create-gh-release-action@v1
22
+ with :
23
+ changelog : CHANGELOG.md
24
+ branch : master
25
+ env :
26
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " async-task"
3
+ # When publishing a new version:
4
+ # - Update CHANGELOG.md
5
+ # - Create "v4.x.y" git tag
3
6
version = " 4.0.3"
4
7
authors = [
" Stjepan Glavina <[email protected] >" ]
5
8
edition = " 2018"
You can’t perform that action at this time.
0 commit comments