Skip to content

Typo

Typo #34

Workflow file for this run

name: Rust
permissions:
contents: write
on: push
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Build
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
run: cargo build
- name: Bundle aarch64
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: ./bundle.sh aarch64-apple-darwin
- name: Bundle x86_64
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: ./bundle.sh x86_64-apple-darwin
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
./target/aarch64-apple-darwin/release/bundle/osx/X1Mk1-usb2midi_aarch64-apple-darwin.zip
./target/x86_64-apple-darwin/release/bundle/osx/X1Mk1-usb2midi_x86_64-apple-darwin.zip
DecksAB.tsi