Update .gitea/workflows/release.yml
Some checks failed
/ release (push) Failing after 5s

This commit is contained in:
Benjamyn Love 2025-03-20 22:03:50 -04:00
parent 3ac03329dd
commit e3992f3bae

View File

@ -15,6 +15,13 @@ jobs:
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix:
platform:
- os-name: Linux-x86_64
runs-on: ubuntu-20.04
target: x86_64-unknown-linux-gnu
toolchain:
- stable
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install deps - name: Install deps
@ -22,7 +29,9 @@ jobs:
- name: Build binary - name: Build binary
uses: houseabsolute/actions-rust-cross@v1 uses: houseabsolute/actions-rust-cross@v1
with: with:
target: "x86_64-unknown-linux-gnu" command: "build"
target: ${{ matrix.platform.target }}
toolchain: ${{ matrix.platform.toolchain }}
- name: Publish artifacts and release - name: Publish artifacts and release
uses: houseabsolute/actions-rust-release@v0 uses: houseabsolute/actions-rust-release@v0
with: with: