update release workflow

This commit is contained in:
mxve 2023-06-10 09:43:54 +02:00
parent b6933d357a
commit 580d6e9646

View File

@ -1,29 +1,32 @@
# .github/workflows/release.yml name: Release
on: on:
release: push:
types: [created] tags:
- v[0-9]+.*
jobs: jobs:
release: create-release:
name: release ${{ matrix.target }} runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-gnu
archive: zip
- target: x86_64-unknown-linux-musl
archive: tar.gz tar.xz tar.zst
- target: x86_64-apple-darwin
archive: zip
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@v2
- name: Compile and release - uses: taiki-e/create-gh-release-action@v1
uses: rust-build/rust-build.action@v1.4.3
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
strategy:
matrix:
os:
- ubuntu-20.04
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: taiki-e/upload-rust-binary-action@v1
with: with:
RUSTTARGET: ${{ matrix.target }} bin: alterware-launcher
ARCHIVE_TYPES: ${{ matrix.archive }} tar: unix
zip: windows
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}