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