Skip to content

ci: add GitHub Actions release pipeline for macOS binaries #1

ci: add GitHub Actions release pipeline for macOS binaries

ci: add GitHub Actions release pipeline for macOS binaries #1

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
build:
strategy:
matrix:
include:
- target: aarch64-apple-darwin
os: macos-latest
name: diskcopilot-cli-aarch64-apple-darwin
- target: x86_64-apple-darwin
os: macos-latest
name: diskcopilot-cli-x86_64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Build
run: cargo build --release --target ${{ matrix.target }}
- name: Package
run: |
cd target/${{ matrix.target }}/release
tar czf ../../../${{ matrix.name }}.tar.gz diskcopilot-cli
cd ../../..
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ${{ matrix.name }}.tar.gz
release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Create Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: |
diskcopilot-cli-aarch64-apple-darwin.tar.gz
diskcopilot-cli-x86_64-apple-darwin.tar.gz