From 578dcf6f9bb2d7d6ad8a5b3a2a9e9e7e4d98f7fd Mon Sep 17 00:00:00 2001 From: ospab Date: Fri, 15 May 2026 16:46:19 +0300 Subject: [PATCH] fix: explicitly execute cargo through rustup run to bypass broken macOS runner shims --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b91e10a..15a36a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -129,7 +129,7 @@ jobs: if: ${{ !matrix.use_cross && matrix.os != 'windows-latest' }} shell: bash run: | - cargo build --release --target ${{ matrix.target }} --bin ostp + rustup run ${{ matrix.toolchain || 'stable' }} cargo build --release --target ${{ matrix.target }} --bin ostp - name: Execute Specialized Cross-Compilation if: ${{ matrix.use_cross }}