From c0300998a018b37393ecb0b029822ff426de6c08 Mon Sep 17 00:00:00 2001 From: Gaius Date: Wed, 27 Dec 2023 16:53:34 +0800 Subject: [PATCH] chore: add target in release Signed-off-by: Gaius --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a139dcfc..e586198c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,13 +7,13 @@ on: jobs: release-github: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: include: - build: linux os: ubuntu-latest - target: [x86_64-unknown-linux-musl, aarch64-unknown-linux-musl] + target: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl, aarch64-unknown-linux-gnu, aarch64-unknown-linux-musl] - build: macos os: macos-latest target: [x86_64-apple-darwin, aarch64-apple-darwin]