disable notarisation, because f... you apple #19
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: Build MacOS Release | |
on: | |
push: | |
tags: | |
- "v*" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Rustup | |
run: rustup target add aarch64-apple-darwin x86_64-apple-darwin | |
- name: Build x86_64 | |
run: cargo build --target=x86_64-apple-darwin -F ${{ vars.CARGO_FEATURES }} --release | |
- name: Build aarch64 | |
run: cargo build --target=aarch64-apple-darwin -F ${{ vars.CARGO_FEATURES }} --release | |
- name: Lipo | |
run: mkdir -p target/release ; lipo -create -output target/release/loungy target/x86_64-apple-darwin/release/loungy target/aarch64-apple-darwin/release/loungy | |
- name: Install Packer | |
run: cargo install cargo-packager --locked | |
- name: Package | |
run: cargo packager --release | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
target/release/*.dmg |