Skip to content

Commit

Permalink
chore: Use target matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
DashieTM committed Sep 18, 2023
1 parent dc28549 commit 7115056
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ on:
jobs:
release:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [x86_64-unknown-linux-gnu]
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@v1.4.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: x86_64_unknown_linux_gnu
RUSTTARGET: ${{ matrix.target }}
EXTRA_FILES: "README.md LICENSE"

0 comments on commit 7115056

Please sign in to comment.