Add qt plugin to appimage build process
All checks were successful
Check / mypy (push) Successful in 37s
Check / ruff (push) Successful in 29s

This commit is contained in:
Christoph Stahl 2025-06-23 00:49:38 +02:00
parent cff08da1d9
commit dcbd0c29c0

View file

@ -16,6 +16,13 @@ if [ ! -x /app/linuxdeploy-x86_64.AppImage ]; then
else else
echo "linuxdeploy AppImage already exists." echo "linuxdeploy AppImage already exists."
fi fi
if [ ! -x /app/linuxdeploy-plugin-qt-x86_64.AppImage ]; then
echo "Downloading linuxdeploy-plugin-qt AppImage..."
wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/1-alpha-20250213-1/linuxdeploy-plugin-qt-x86_64.AppImage
chmod +x linuxdeploy-plugin-qt-x86_64.AppImage
else
echo "linuxdeploy-plugin-qt AppImage already exists."
fi
if [ ! -d /app/syng ]; then if [ ! -d /app/syng ]; then
echo "Cloning Syng repository..." echo "Cloning Syng repository..."
git clone https://github.com/christofsteel/syng.git /app/syng git clone https://github.com/christofsteel/syng.git /app/syng