Skip to content

Commit 533e62a

Browse files
feat: add github action to upload batcher-client binary in each release (#326)
Co-authored-by: Mauro Toscano <[email protected]>
1 parent b4188b1 commit 533e62a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)