We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2c1cf5 commit 33fa516Copy full SHA for 33fa516
.github/workflows/release.yml
@@ -105,10 +105,14 @@ jobs:
105
chmod 600 ~/.ssh/known_hosts
106
107
- name: Pizza engine features setup
108
- if: matrix.target != 'i686-pc-windows-msvc'
109
run: |
110
- make add-dep-pizza-engine
111
- 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
112
+ make add-dep-pizza-engine-linux
113
+ rustup target add ${{ matrix.target}} --toolchain nightly-2025-02-28
114
+ fi
115
+
116
117
- name: Build the app with ${{ matrix.platform }}
118
uses: tauri-apps/tauri-action@v0
0 commit comments