Skip to content

docs: update Quick Start to use chorus CLI with --data-dir identity i… #1

docs: update Quick Start to use chorus CLI with --data-dir identity i…

docs: update Quick Start to use chorus CLI with --data-dir identity i… #1

Workflow file for this run

name: Release
on:
push:
tags: ["v*"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build (${{ matrix.target }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
target: aarch64-apple-darwin
artifact: chorus-aarch64-apple-darwin.tar.gz
- os: macos-13
target: x86_64-apple-darwin
artifact: chorus-x86_64-apple-darwin.tar.gz
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact: chorus-x86_64-unknown-linux-gnu.tar.gz
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --release
- name: Package
run: |
cd target/release
tar czf ../../${{ matrix.artifact }} chorus
- name: Upload to release
uses: softprops/action-gh-release@v2
with:
files: ${{ matrix.artifact }}