From 041e5622b62bb4abe8240986452fe41262e5adc1 Mon Sep 17 00:00:00 2001 From: Marco De Araujo Date: Thu, 1 Jan 2026 07:44:31 -0400 Subject: [PATCH] Testing workflow --- .forgejo/workflows/release.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index d7a5f90..4a18fa6 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -12,20 +12,19 @@ jobs: include: - target: native cross: false - container: "" - name: "ARM64 NATIVE" + platform: linux/arm64 - target: x86_64-unknown-linux-gnu cross: true - container: ghcr.io/forgejo-actions/rust-cross:x86_64-unknown-linux-gnu-2025 - name: "Linux x86_64" + platform: linux/amd64 - target: x86_64-pc-windows-gnu cross: true - container: ghcr.io/forgejo-actions/rust-cross:x86_64-pc-windows-gnu-2025 - name: "Windows x86_64" + platform: linux/amd64 - container: ${{ matrix.container }} + container: + image: rust:alpine + options: --platform ${{ matrix.platform }} steps: - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4