mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
74 lines
2.2 KiB
YAML
74 lines
2.2 KiB
YAML
# Based on ripgrep's release action:
|
|
# https://github.com/BurntSushi/ripgrep/blob/master/.github/workflows/release.yml
|
|
|
|
name: Build Release Binaries
|
|
on:
|
|
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: 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
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@1.77.0
|
|
with:
|
|
target: ${{ matrix.target }}
|
|
|
|
- name: Run Cross
|
|
if: ${{ matrix.cross }}
|
|
run: |
|
|
cargo install cross --git https://github.com/cross-rs/cross.git --locked --rev 085092ca
|
|
cross build -p typst-cli --release --target ${{ matrix.target }} --features self-update,vendor-openssl
|
|
|
|
- name: Run Cargo
|
|
if: ${{ !matrix.cross }}
|
|
run: cargo build -p typst-cli --release --target ${{ matrix.target }} --features self-update
|
|
|
|
- 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/typst.exe ]; then
|
|
cp target/${{ matrix.target }}/release/typst.exe $directory
|
|
7z a -r $directory.zip $directory
|
|
else
|
|
cp target/${{ matrix.target }}/release/typst $directory
|
|
tar cJf $directory.tar.xz $directory
|
|
fi
|
|
|
|
- uses: ncipollo/release-action@v1.14.0
|
|
with:
|
|
artifacts: "typst-${{ matrix.target }}.*"
|
|
allowUpdates: true
|
|
omitNameDuringUpdate: true
|
|
omitBodyDuringUpdate: true
|