mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-18 18:48:33 +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:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
target: [x86_64-unknown-linux-gnu]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
- name: Compile and release
|
- name: Compile and release
|
||||||
|
@ -12,5 +16,5 @@ jobs:
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
RUSTTARGET: x86_64_unknown_linux_gnu
|
RUSTTARGET: ${{ matrix.target }}
|
||||||
EXTRA_FILES: "README.md LICENSE"
|
EXTRA_FILES: "README.md LICENSE"
|
||||||
|
|
Loading…
Reference in a new issue