Build Release Binaries #27
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
# Based on typst's release action: | |
# https://github.com/typst/typst/blob/main/.github/workflows/release.yml | |
name: Build Release Binaries | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
build-release: | |
name: release ${{ matrix.target }} | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-musl | |
os: ubuntu-latest | |
cross: true | |
- target: aarch64-unknown-linux-musl | |
os: ubuntu-latest | |
cross: true | |
- target: armv7-unknown-linux-musleabi | |
os: ubuntu-latest | |
cross: true | |
- target: riscv64gc-unknown-linux-gnu | |
os: ubuntu-latest | |
cross: true | |
- target: x86_64-apple-darwin | |
os: macos-latest | |
cross: false | |
- target: aarch64-apple-darwin | |
os: macos-latest | |
cross: false | |
- target: x86_64-pc-windows-msvc | |
os: windows-latest | |
cross: false | |
- target: aarch64-pc-windows-msvc | |
os: windows-latest | |
cross: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@1.83.0 | |
with: | |
target: ${{ matrix.target }} | |
- name: Run Cross | |
if: ${{ matrix.cross }} | |
run: | | |
cargo install cross --git https://github.com/cross-rs/cross.git | |
cross build --release | |
- name: Run Cargo | |
if: ${{ !matrix.cross }} | |
run: cargo build --release | |
- name: create artifact directory | |
shell: bash | |
run: | | |
directory=typst-${{ matrix.target }} | |
mkdir $directory | |
cp README.md LICENSE NOTICE $directory | |
if [ -f target/${{ matrix.target }}/release/canvas_syncer.exe ]; then | |
cp target/${{ matrix.target }}/release/canvas_syncer.exe $directory | |
7z a -r $directory.zip $directory | |
else | |
cp target/${{ matrix.target }}/release/canvas_syncer $directory | |
tar cJf $directory.tar.xz $directory | |
fi | |
- uses: actions/upload-artifact@v4 | |
if: github.event_name == 'workflow_dispatch' | |
with: | |
name: typst-${{ matrix.target }} | |
path: "typst-${{ matrix.target }}.*" | |
retention-days: 3 | |
- uses: ncipollo/release-action@v1.14.0 | |
if: github.event_name == 'release' | |
with: | |
artifacts: "typst-${{ matrix.target }}.*" | |
allowUpdates: true | |
omitNameDuringUpdate: true | |
omitBodyDuringUpdate: true |