Skip to content

Workflow file for this run

on:
release:
types: [created]
jobs:
release:
name: Release - ${{ matrix.platform.release_for }}
strategy:
matrix:
platform:
- release_for: Linux-GNU-x86_64
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
bin: nekotatsu
name: nekotatsu-${{github.ref_name}}-Linux-GNU-x86_64.tar.gz
command: build
- release_for: Windows-x86_64
os: windows-latest
target: x86_64-pc-windows-msvc
bin: nekotatsu.exe
name: nekotatsu-${{github.ref_name}}-Windows-x86_64.zip
command: both
- release_for: macOS-aarch64
os: macOS-latest
target: aarch64-apple-darwin
bin: nekotatsu
name: nekotatsu-${{github.ref_name}}-Darwin-aarch64.tar.gz
command: both
runs-on: ${{ matrix.platform.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
command: ${{ matrix.platform.command }}
target: ${{ matrix.platform.target }}
args: "--locked --release"
strip: true
- name: Package as archive
shell: bash
run: |
cd target/${{ matrix.platform.target }}/release
if [[ "${{ matrix.platform.os }}" == "windows-latest" ]]; then
7z a ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
else
tar czvf ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
fi
cd -
- name: Publish release artifacts
uses: actions/upload-artifact@v3
with:
name: nekotatsu-${{ matrix.platform.os_name }}
path: "nekotatsu-*"
- name: Generate SHA-256
run: shasum -a 256 ${{ matrix.platform.name }}
- name: Publish GitHub release
uses: softprops/action-gh-release@v1
with:
draft: true
files: "nekotatsu-*"