Skip to content

Commit

Permalink
feat: add github action to upload batcher-client binary in each relea…
Browse files Browse the repository at this point in the history
…se (#326)

Co-authored-by: Mauro Toscano <12560266+MauroToscano@users.noreply.github.com>
  • Loading branch information
NicolasRampoldi and MauroToscano committed Jun 7, 2024
1 parent b4188b1 commit 533e62a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build and Release Rust Project

on:
push:
tags:
- 'v*.*.*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Build batcher client
run: make build_batcher_client

- name: Release
uses: softprops/action-gh-release@v2
with:
files: batcher/client/target/release/batcher-client

0 comments on commit 533e62a

Please sign in to comment.