Skip to content

brewfatherlog 0.1.0

brewfatherlog 0.1.0 #2

Workflow file for this run

name: Release
on:
release:
types: [created]
jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-musl
archive: tar.zst tar.bz2
- target: x86_64-apple-darwin
archive: tar.zst zip
- target: x86_64-pc-windows-gnu
archive: tar.zst zip
steps:
- uses: actions/checkout@main
- name: Build release binary
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
TOOLCHAIN_VERSION: stable
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
EXTRA_FILES: "README.md LICENSE.md"