From e3992f3bae9b12e7a20aecc306b5feb0a0c3ca41 Mon Sep 17 00:00:00 2001 From: Benjamyn Love Date: Thu, 20 Mar 2025 22:03:50 -0400 Subject: [PATCH] Update .gitea/workflows/release.yml --- .gitea/workflows/release.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 130eecc..d3c31c6 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -15,6 +15,13 @@ jobs: runs-on: ubuntu-24.04 strategy: fail-fast: false + matrix: + platform: + - os-name: Linux-x86_64 + runs-on: ubuntu-20.04 + target: x86_64-unknown-linux-gnu + toolchain: + - stable steps: - uses: actions/checkout@v4 - name: Install deps @@ -22,7 +29,9 @@ jobs: - name: Build binary uses: houseabsolute/actions-rust-cross@v1 with: - target: "x86_64-unknown-linux-gnu" + command: "build" + target: ${{ matrix.platform.target }} + toolchain: ${{ matrix.platform.toolchain }} - name: Publish artifacts and release uses: houseabsolute/actions-rust-release@v0 with: