Skip to content

Commit

Permalink
feat: add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRampoldi committed Jun 6, 2024
1 parent a525f12 commit ef03fac
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 ef03fac

Please sign in to comment.