We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb7b4ec commit ae97107Copy full SHA for ae97107
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: publish to crates.io
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '0.*'
7
8
+env:
9
+ CARGO_TERM_COLOR: always
10
11
+jobs:
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Docs
19
+ run: cargo doc
20
+ - uses: actions-rs/toolchain@v1
21
+ with:
22
+ toolchain: stable
23
+ override: true
24
+ - uses: katyo/publish-crates@v1
25
26
+ registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
.github/workflows/rust.yml
0 commit comments