File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 44
44
- name : Coveralls upload
45
45
uses : coverallsapp/github-action@master
46
46
with :
47
- github-token : ${{ secrets.GITHUB_TOKEN }}
47
+ github-token : ${{ secrets.COVERALLS_REPO_TOKEN }}
48
48
path-to-lcov : ${{ steps.coverage.outputs.report }}
Original file line number Diff line number Diff line change
1
+ name : Publish after Release
2
+
3
+ on :
4
+ release :
5
+ types :
6
+ - published
7
+
8
+ jobs :
9
+ run_after_release :
10
+ name : crates.io publish
11
+ runs-on : ubuntu-latest
12
+ env :
13
+ RUSTFLAGS : " -D warnings"
14
+ RUSTDOCFLAGS : " -D warnings"
15
+ steps :
16
+ - name : Update sources
17
+ run : sudo apt update
18
+ - uses : actions/checkout@v4
19
+ - uses : dtolnay/rust-toolchain@stable
20
+ with :
21
+ toolchain : stable minus 2 releases
22
+ - name : cargo publish
23
+ run : |
24
+ cargo login ${{ secrets.CRATES_IO_API_TOKEN }}
25
+ cargo publish --no-verify
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " clojure-reader"
3
- version = " 0.2 .0"
3
+ version = " 0.3 .0"
4
4
edition = " 2021"
5
5
resolver = " 2"
6
6
authors = [
" Kevin Nakamura <[email protected] >" ]
You can’t perform that action at this time.
0 commit comments