fix: apply zkquiz fixes from v052 to v060 (#946) #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release Aligned Client | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
artifact_name: aligned-x86 | |
- os: macos-latest | |
artifact_name: aligned-arm64 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build batcher client | |
run: make build_batcher_client | |
- name: Rename binary | |
run: mv batcher/target/release/aligned ${{ matrix.artifact_name }} | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: ${{ matrix.artifact_name }} |