From fab19db2d713a6cdc47c8b74396a0e7b8dcbd806 Mon Sep 17 00:00:00 2001 From: Caznix Date: Sun, 1 Dec 2024 18:47:33 -0500 Subject: [PATCH] only include binaries --- .github/workflows/rust.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1ba865c..641ed49 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,13 +14,18 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - arch: [x86_64] + arch: [x86_64, aarch64] include: - arch: x86_64 target: x86_64-unknown-linux-gnu - os: macos-latest arch: x86_64 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 }} steps: @@ -43,6 +48,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: Zenyx-${{ runner.os }}-${{ matrix.arch }}-binary - path: | - target/${{ matrix.target }}/release/*.exe - target/${{ matrix.target }}/release/*[^.]* \ No newline at end of file + path: target/${{ matrix.target }}/release/zenyx* \ No newline at end of file