From 5610cc39241cf48eed5e0b56123474a392c3a9e5 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Sat, 14 Mar 2026 10:13:00 -0500 Subject: [PATCH] ci(github-actions): install `libfuse2t64` for Linux AppImage packaging (#4798) --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5271b159d..39e7ab2b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -295,6 +295,10 @@ jobs: - name: Export Full Library Licenses run: ./gradlew exportLibraryDefinitions -Pci=true + - name: Install dependencies for AppImage + if: runner.os == 'Linux' + run: sudo apt-get update && sudo apt-get install -y libfuse2t64 + - name: Package Native Distributions env: ORG_GRADLE_PROJECT_appVersionName: ${{ needs.prepare-build-info.outputs.APP_VERSION_NAME }}