fix CI build by using continuous tag for AppImage tool (#1881)

This commit is contained in:
woodser 2025-07-23 13:18:18 -04:00 committed by GitHub
parent bf1727bda6
commit 6925117f12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -338,13 +338,10 @@ task packageInstallers {
"\"${binariesFolderPath}/${appNameAndVendor}\""
)
// Which version of AppImageTool to use
String AppImageToolVersion = "13";
// Download AppImageTool
Map AppImageToolBinaries = [
'linux' : "https://github.com/AppImage/AppImageKit/releases/download/${AppImageToolVersion}/appimagetool-x86_64.AppImage",
'linux-aarch64' : "https://github.com/AppImage/AppImageKit/releases/download/${AppImageToolVersion}/appimagetool-aarch64.AppImage",
'linux' : "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage",
'linux-aarch64' : "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-aarch64.AppImage",
]
String osKey = getJavaBinariesDownloadURLs.property('osKey')