From 33fa516aad778be85a0210fb58b613288e4cbe85 Mon Sep 17 00:00:00 2001 From: Hardy Date: Sun, 1 Jun 2025 07:19:28 +0800 Subject: [PATCH] fix: rustup for i688 (#590) Co-authored-by: hardy --- .github/workflows/release.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9484da0b..e2cd598a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -105,10 +105,14 @@ jobs: chmod 600 ~/.ssh/known_hosts - name: Pizza engine features setup - if: matrix.target != 'i686-pc-windows-msvc' run: | - make add-dep-pizza-engine - rustup target add ${{ matrix.target}} --toolchain nightly-2025-02-28 + if [[ ${{ matrix.target }} == "i686-pc-windows-msvc" ]]; then + rustup target add i686-pc-windows-msvc --toolchain stable + else + make add-dep-pizza-engine-linux + rustup target add ${{ matrix.target}} --toolchain nightly-2025-02-28 + fi + - name: Build the app with ${{ matrix.platform }} uses: tauri-apps/tauri-action@v0