2024-08-21 21:23:36 +02:00
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [created]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: release ${{ matrix.target }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
target:
|
|
|
|
- x86_64-pc-windows-gnu
|
|
|
|
- x86_64-unknown-linux-musl
|
2024-08-21 21:27:13 +02:00
|
|
|
- x86_64-apple-darwin
|
2024-08-21 21:23:36 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Compile and release
|
|
|
|
uses: rust-build/rust-build.action@v1.4.5
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
RUSTTARGET: ${{ matrix.target }}
|
|
|
|
SRC_DIR: zns-cli/
|
|
|
|
EXTRA_FILES: README.md
|