Skip to content

Commit

Permalink
chore: update release workflow with new targets and options
Browse files Browse the repository at this point in the history
Added new target architectures for Linux and macOS, as well as disabled zip and tar compression options in the Rust binary upload step.
  • Loading branch information
Velka-DEV committed Apr 20, 2024
1 parent d2aeaba commit 5590add
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,23 @@ jobs:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-apple-darwin
os: macos-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
- target: aarch64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: scanner
zip: none
tar: none
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5590add

Please sign in to comment.