10
0
Fork 0
mirror of https://github.com/ZeusWPI/ZNS.git synced 2024-11-22 05:41:11 +01:00

feat: create binary upon release

This commit is contained in:
Topvennie 2024-08-21 21:23:36 +02:00
parent 6ed4de8b44
commit 80af206073
No known key found for this signature in database
2 changed files with 28 additions and 0 deletions

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

@ -0,0 +1,27 @@
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
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

1
.tool-versions Normal file
View file

@ -0,0 +1 @@
rust 1.80.1