github: attempt to build release using rust-build/rust-build.action (#73)

I just copied from the examples on
https://github.com/rust-build/rust-build.action. Let's see if it
works.
This commit is contained in:
Martin von Zweigbergk 2022-03-12 21:50:04 -08:00 committed by Martin von Zweigbergk
parent 326654952e
commit bf21e65c5d

29
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,29 @@
# .github/workflows/release.yml
on:
release:
types: [created]
jobs:
release:
name: release ${{ matrix.target }}
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
- target: x86_64-apple-darwin
archive: zip
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUSTTARGET: ${{ matrix.target }}
EXTRA_FILES: "README.md LICENSE"
ARCHIVE_TYPES: ${{ matrix.archive }}