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 930064f commit 27ff6ccCopy full SHA for 27ff6cc
.github/workflows/release.yml
@@ -0,0 +1,21 @@
1
+name: release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+jobs:
8
+ publish:
9
+ name: Publish
10
+ # Specify OS
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout sources
14
+ uses: actions/checkout@v3
15
+ - name: Install stable toolchain
16
+ uses: actions-rs/toolchain@v1
17
+ with:
18
+ toolchain: stable
19
+ - uses: katyo/publish-crates@v1
20
21
+ registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
0 commit comments