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 d8bb47b commit 6b10bb6Copy full SHA for 6b10bb6
.github/workflows/release.yml
@@ -0,0 +1,20 @@
1
+# This workflow runs when commits are pushed to main or a branch starting with
2
+# "version-". It checks if any packages require a new release, and if so,
3
+# creates the corresponding crates.io releases and git tags.
4
+name: Release
5
+on:
6
+ push:
7
+ branches:
8
+ - main
9
+ - version-*
10
+permissions:
11
+ contents: write
12
+jobs:
13
+ release:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: Swatinem/rust-cache@v2
18
+ - run: cargo xtask auto-release
19
+ env:
20
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
0 commit comments