Skip to content

v0.1.0

v0.1.0 #1

Workflow file for this run

name: release
permissions:
contents: write
on:
release:
types: [created]
jobs:
upload-assets:
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: procfusion
target: ${{ matrix.target }}
tar: unix
archive: $bin-$tag-$target
include: LICENSE.txt,README.md
leading-dir: true
token: ${{ secrets.GITHUB_TOKEN }}