From d6d6cf4b63431ff0848987fe79743e231cbaa087 Mon Sep 17 00:00:00 2001 From: pbean Date: Thu, 18 Jun 2026 19:34:23 -0700 Subject: [PATCH] fix(ci): install xdg-utils for Linux release bundling The ubuntu-22.04-arm runner image lacks /usr/bin/xdg-open, so tauri-action fails to bundle with 'xdg-open binary not found'. The x64 ubuntu runner ships xdg-utils preinstalled, masking the missing dependency. Add xdg-utils to the apt install list so all Linux targets (x64 and ARM64) can bundle. Co-Authored-By: Claude Opus 4.8 --- .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 be23d41..676c9f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: if: startsWith(matrix.platform, 'ubuntu-') run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libxdo-dev + sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libxdo-dev xdg-utils - name: Setup Node.js uses: actions/setup-node@v6