diff options
| author | 2026-01-14 20:55:36 +0800 | |
|---|---|---|
| committer | 2026-01-14 20:55:36 +0800 | |
| commit | ec09a0bc05ebc2bf23155a79690e51ef977db9dc (patch) | |
| tree | e2292bd5406c44f8989bd2cbc6c19a7e91138583 /.github/workflows | |
| parent | dba27a4bf32d5de7ef42c2e65c5b407b7e12c39d (diff) | |
| download | DropOut-ec09a0bc05ebc2bf23155a79690e51ef977db9dc.tar.gz DropOut-ec09a0bc05ebc2bf23155a79690e51ef977db9dc.zip | |
fix: refine AppImage handling for Wayland on Linux platforms
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24a8e46..487ddee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -175,7 +175,7 @@ jobs: args: ${{ matrix.args }} - name: Fix AppImage for Wayland (Linux) - if: startsWith(matrix.platform, 'ubuntu') || matrix.platform == 'archlinux-latest' + if: (startsWith(matrix.platform, 'ubuntu') || matrix.wayland) && !startsWith(matrix.platform, 'macos') && !startsWith(matrix.platform, 'windows') run: | # Locate the generated AppImage APPIMAGE=$(find bundle -name "*.AppImage" -type f | head -1) @@ -201,7 +201,7 @@ jobs: working-directory: src-tauri/target/release - name: Test AppImage on Wayland (Arch) - if: matrix.platform == 'archlinux-latest' && matrix.wayland + if: matrix.wayland run: | # Test that the AppImage can run in Wayland environment APPIMAGE=$(find bundle -name "*.AppImage" -type f | head -1) |