We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f97746 commit aaace38Copy full SHA for aaace38
.github/workflows/publish.yaml
@@ -0,0 +1,15 @@
1
+name: Publish Crate
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*.*.*" # only run when you push a version tag like v0.3.0
7
8
+jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: dtolnay/rust-toolchain@stable
14
+ - name: Publish to crates.io
15
+ run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
0 commit comments