🐛fix: Tauri AppImage failing to render on wayland + mesa (#5463)

This commit is contained in:
DistractionRectangle 2025-06-27 09:16:25 -07:00 committed by GitHub
parent a324f4b84d
commit 50f3563a96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -151,6 +151,12 @@ jobs:
fi fi
- name: Build app - name: Build app
run: | run: |
# Pin linuxdeploy version to prevent @tauri-apps/cli-linux-x64-gnu from pulling in an outdated version
TAURI_TOOLKIT_PATH="${XDG_CACHE_HOME:-$HOME/.cache}/tauri"
mkdir -p "$TAURI_TOOLKIT_PATH"
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/1-alpha-20250213-2/linuxdeploy-x86_64.AppImage -O "$TAURI_TOOLKIT_PATH/linuxdeploy-x86_64.AppImage"
chmod +x "$TAURI_TOOLKIT_PATH/linuxdeploy-x86_64.AppImage"
make build-tauri make build-tauri
# Copy engines and bun to appimage # Copy engines and bun to appimage
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O ./appimagetool wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O ./appimagetool