only include binaries
This commit is contained in:
parent
a040ebd069
commit
fab19db2d7
1 changed files with 7 additions and 4 deletions
11
.github/workflows/rust.yml
vendored
11
.github/workflows/rust.yml
vendored
|
@ -14,13 +14,18 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
arch: [x86_64]
|
arch: [x86_64, aarch64]
|
||||||
include:
|
include:
|
||||||
- arch: x86_64
|
- arch: x86_64
|
||||||
target: x86_64-unknown-linux-gnu
|
target: x86_64-unknown-linux-gnu
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
arch: x86_64
|
arch: x86_64
|
||||||
target: x86_64-apple-darwin
|
target: x86_64-apple-darwin
|
||||||
|
- arch: aarch64
|
||||||
|
target: aarch64-unknown-linux-gnu
|
||||||
|
- os: macos-latest
|
||||||
|
arch: aarch64
|
||||||
|
target: aarch64-apple-darwin
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -43,6 +48,4 @@ jobs:
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: Zenyx-${{ runner.os }}-${{ matrix.arch }}-binary
|
name: Zenyx-${{ runner.os }}-${{ matrix.arch }}-binary
|
||||||
path: |
|
path: target/${{ matrix.target }}/release/zenyx*
|
||||||
target/${{ matrix.target }}/release/*.exe
|
|
||||||
target/${{ matrix.target }}/release/*[^.]*
|
|
Loading…
Add table
Add a link
Reference in a new issue