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 55162fb commit 66ab8a3Copy full SHA for 66ab8a3
.github/workflows/release.yml
@@ -0,0 +1,34 @@
1
+name: Release
2
+
3
+permissions:
4
+ contents: write
5
6
+on:
7
+ push:
8
+ tags:
9
+ - v[0-9]+.*
10
11
+jobs:
12
+ create-release:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: taiki-e/create-gh-release-action@v1
17
+ with:
18
+ token: ${{ secrets.GITHUB_TOKEN }}
19
20
+ upload-assets:
21
+ needs: create-release
22
+ strategy:
23
+ matrix:
24
+ os:
25
+ - ubuntu-latest
26
+ - macos-latest
27
+ - windows-latest
28
+ runs-on: ${{ matrix.os }}
29
30
31
+ - uses: taiki-e/upload-rust-binary-action@v1
32
33
+ bin: ch
34
0 commit comments