Appimage continous (#2938)

* fixing appiamge pipeline

* fixing appimage pipeline
This commit is contained in:
borgmanJeremy
2022-10-05 14:21:55 -05:00
committed by GitHub
parent 7feedcad25
commit 49d7a15a19

View File

@@ -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