Skip to content

fix names

fix names #8

Workflow file for this run

name: Build Rust binary
on: [push]
jobs:
build-macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install latest rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: beta
target: aarch64-apple-darwin
default: true
override: true
- name: Build for MacOS
uses: actions-rs/cargo@v1
with:
command: build
args: --manifest-path=crates/Cargo.toml --target aarch64-apple-darwin
- name: strip binary
run: strip ./crates/target/aarch64-apple-darwin/debug/y-sweet
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: macos-binary
path: ./crates/target/aarch64-apple-darwin/debug/y-sweet