summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortummychow <tummychow@users.noreply.github.com>2024-11-03 13:33:36 -0500
committertummychow <tummychow@users.noreply.github.com>2024-11-03 13:33:36 -0500
commit090d8749774d355025b0c12266b76ceacdb47c4e (patch)
treefd8c9cc55307fed178403de218de4ab80495c733
parentf60b7dbb2c0e3083b583988042ed99fa2990e219 (diff)
fix release matrixHEAD0.6.16master
-rw-r--r--.github/workflows/release.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2c86edb..cb86797 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -68,27 +68,27 @@ jobs:
# so we only use it for the linux targets that require other architectures/libcs
- build: linux
os: ubuntu-latest
- rust: nightly
+ toolchain: nightly
target: x86_64-unknown-linux-musl
cross: true
- build: linux-arm
os: ubuntu-latest
- rust: nightly
+ toolchain: nightly
target: arm-unknown-linux-gnueabihf
cross: true
- build: macos
os: macos-latest
- rust: nightly
+ toolchain: nightly
target: x86_64-apple-darwin
cross: false
- build: win-msvc
os: windows-latest
- rust: nightly
+ toolchain: nightly
target: x86_64-pc-windows-msvc
cross: false
- build: win-gnu
os: windows-latest
- rust: nightly-x86_64-gnu
+ toolchain: nightly-x86_64-gnu
target: x86_64-pc-windows-gnu
cross: false
@@ -105,7 +105,7 @@ jobs:
- name: Build release binary
uses: clechasseur/rs-cargo@v2
with:
- use-cross: ${{ matrix.use-cross }}
+ use-cross: ${{ matrix.cross }}
command: build
args: --release --verbose --target ${{ matrix.target }}