From 49d7a15a196cea39673d4c1596f1813dd5091c54 Mon Sep 17 00:00:00 2001 From: borgmanJeremy <46930769+borgmanJeremy@users.noreply.github.com> Date: Wed, 5 Oct 2022 14:21:55 -0500 Subject: [PATCH] Appimage continous (#2938) * fixing appiamge pipeline * fixing appimage pipeline --- .github/workflows/Linux-pack.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Linux-pack.yml b/.github/workflows/Linux-pack.yml index f3882bfc..72e713cb 100644 --- a/.github/workflows/Linux-pack.yml +++ b/.github/workflows/Linux-pack.yml @@ -398,14 +398,17 @@ jobs: hicolor-icon-theme \ fcitx-frontend-qt5 \ openssl \ - ca-certificates + ca-certificates \ + jq + - name: Get go-appimage tool # Will not use linuxdeployqt anymore, because it suopprts currently still-supported mainstream distribution, # which is glibc 2.23. For more information, please see https://github.com/probonopd/linuxdeployqt/issues/340. # Will try new tool https://github.com/probonopd/go-appimage written in golang by probonopd. run: | - wget https://github.com/probonopd/go-appimage/releases/download/continuous/appimagetool-724-x86_64.AppImage -O appimagetool + wget $(curl https://api.github.com/repos/probonopd/go-appimage/releases | jq -r '.[] | select(.tag_name == "continuous") | .assets[] | select((.name | endswith("x86_64.AppImage")) and (.name | contains("appimagetool"))) | .browser_download_url') -O appimagetool + chmod +x appimagetool env: APPIMAGETOOL_ARCH: x86_64