We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4188b1 commit 533e62aCopy full SHA for 533e62a
1 file changed
.github/workflows/release.yml
@@ -0,0 +1,22 @@
1
+name: Build and Release Rust Project
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*.*.*'
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Build batcher client
17
+ run: make build_batcher_client
18
19
+ - name: Release
20
+ uses: softprops/action-gh-release@v2
21
+ with:
22
+ files: batcher/client/target/release/batcher-client
0 commit comments