From 25d5121a280778834300cb4fadf4e9c1c0bf0e47 Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 28 Jul 2025 18:32:13 -0500 Subject: [PATCH] ci: correct toolchain matrix args --- .github/workflows/build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0abf395..3973642 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,20 +11,23 @@ jobs: strategy: fail-fast: false matrix: - toolchain: [1.88.0] include: - os: ubuntu-latest target: x86_64-unknown-linux-gnu artifact_name: pacman + toolchain: 1.88.0 - os: macos-13 target: x86_64-apple-darwin artifact_name: pacman + toolchain: 1.88.0 - os: macos-latest target: aarch64-apple-darwin artifact_name: pacman + toolchain: 1.88.0 - os: windows-latest target: x86_64-pc-windows-gnu artifact_name: pacman.exe + toolchain: 1.88.0 runs-on: ${{ matrix.os }} steps: - name: Checkout