v0.6.0-rc.3 #82
Workflow file for this run
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: Release MacOS (M1) | |
on: | |
release: | |
types: | |
- created | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
deploy: | |
name: Deploy for macos (M1) | |
if: startsWith(github.ref, 'refs/tags') | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
name: [macos-11-m1, macos-12-m1] | |
include: | |
- name: macos-11-m1 | |
os: macos-11 | |
artifact_name: matchstick | |
asset_name: binary-macos-11-m1 | |
- name: macos-12-m1 | |
os: macos-12 | |
artifact_name: matchstick | |
asset_name: binary-macos-12-m1 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: 1.68.0 | |
- run: brew install protobuf | |
- name: Build | |
run: rustup target add aarch64-apple-darwin && cargo build --release --target aarch64-apple-darwin && mv target/aarch64-apple-darwin/release/${{ matrix.artifact_name }} target/release/${{ matrix.asset_name }} | |
- name: Upload binary to release | |
run: echo ${{ secrets.GITHUB_TOKEN }} | gh auth login --with-token && gh release upload ${GITHUB_REF##*/} target/release/${{ matrix.asset_name }} |