Skip to content

Literally a prototype #1

Literally a prototype

Literally a prototype #1

Workflow file for this run

name: Publish binaries to GitHub releases
on:
release:
types: [created]
jobs:
release:
name: Release for ${{ matrix.platform.os-name }}
strategy:
matrix:
platform:
- os-name: linux-x86_64
runs-on: ubuntu-24.04
target: x86_64-unknown-linux-musl
- os-name: linux-aarch64
runs-on: ubuntu-24.04
target: aarch64-unknown-linux-musl
- os-name: windows-x86_64
runs-on: windows-latest
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.platform.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build binary
uses: houseabsolute/actions-rust-cross@v1
with:
command: build
toolchain: stable
target: ${{ matrix.platform.target }}
args: "--release"
- name: Publish artifacts and release
uses: houseabsolute/actions-rust-release@v0
with:
executable-name: fh-dyno
target: ${{ matrix.platform.target }}
changes-file: ""