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 df6fc52 commit 8bb6492Copy full SHA for 8bb6492
.github/workflows/release.yaml
@@ -0,0 +1,24 @@
1
+name: Release
2
+
3
+on:
4
+ push:
5
+ tags: ['v*']
6
7
+jobs:
8
+ publish:
9
+ name: Publish
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ id-token: write
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
16
17
+ - name: Authenticate with crates.io
18
+ uses: rust-lang/crates-io-auth-action@63a7064947ceca9989005e118db3a5fecdc9259f # v1.0.0
19
+ id: auth
20
21
+ - name: Publish
22
+ run: cargo publish
23
+ env:
24
+ CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
0 commit comments