From 4541044c421026c54b93159f7ea232b3af07e0a6 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Tue, 11 Nov 2025 15:02:54 +0800 Subject: [PATCH] GHA CI: ensure AppRun hook folder exists Upstream made some changes and it won't create the AppRun hook folder anymore, so we create it ourselves. Upstream PR: https://github.com/linuxdeploy/linuxdeploy-plugin-qt/pull/206 PR #23474. --- .github/workflows/ci_ubuntu.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_ubuntu.yaml b/.github/workflows/ci_ubuntu.yaml index d754d9d87..2c5b35fe2 100644 --- a/.github/workflows/ci_ubuntu.yaml +++ b/.github/workflows/ci_ubuntu.yaml @@ -164,7 +164,8 @@ jobs: run: | rm -f "${{ runner.workspace }}/Qt/${{ matrix.qt_version }}/gcc_64/plugins/sqldrivers/libqsqlmimer.so" ./linuxdeploy-x86_64.AppImage --appdir qbittorrent --plugin qt - rm qbittorrent/apprun-hooks/* + mkdir -p qbittorrent/apprun-hooks + rm -f qbittorrent/apprun-hooks/* cp .github/workflows/helper/appimage/export_vars.sh qbittorrent/apprun-hooks/export_vars.sh NO_APPSTREAM=1 \ OUTPUT=upload/qbittorrent-CI_Ubuntu_x86_64.AppImage \