From 920fb6d913228a2915ab90c7b7e71b87384dc705 Mon Sep 17 00:00:00 2001 From: wznmickey Date: Sat, 15 Feb 2025 20:39:31 +0800 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 32b764d..09473b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,30 +17,33 @@ jobs: fail-fast: false matrix: include: + - target: x86_64-pc-windows-msvc + os: windows-latest + cross: false - target: x86_64-unknown-linux-musl os: ubuntu-22.04 cross: true - - target: aarch64-unknown-linux-musl - os: ubuntu-22.04 - cross: true - - target: armv7-unknown-linux-musleabi - os: ubuntu-22.04 - cross: true - - target: riscv64gc-unknown-linux-gnu - os: ubuntu-22.04 - cross: true - target: x86_64-apple-darwin os: macos-latest cross: false - target: aarch64-apple-darwin os: macos-latest cross: false - - target: x86_64-pc-windows-msvc - os: windows-latest - cross: false - target: aarch64-pc-windows-msvc os: windows-latest cross: false + - target: aarch64-unknown-linux-musl + os: ubuntu-22.04 + cross: true + - target: armv7-unknown-linux-musleabi + os: ubuntu-22.04 + cross: true + - target: riscv64gc-unknown-linux-gnu + os: ubuntu-22.04 + cross: true + + + steps: - uses: actions/checkout@v4