mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-04 13:02:01 +02:00
chore: Use target matrix
This commit is contained in:
parent
dc28549ef6
commit
7115056ae6
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -5,6 +5,10 @@ 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
|
||||
|
@ -12,5 +16,5 @@ jobs:
|
|||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
RUSTTARGET: x86_64_unknown_linux_gnu
|
||||
RUSTTARGET: ${{ matrix.target }}
|
||||
EXTRA_FILES: "README.md LICENSE"
|
||||
|
|
Loading…
Reference in a new issue