From 30cb38b6dd5519df423137058bff68ea6fe25611 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Fri, 19 Sep 2025 15:36:03 +1000 Subject: [PATCH] ci: Fix YAML parsing by breaking long echo command into shorter ones - The long echo command with embedded commands was causing YAML parsing issues - Split the usage instructions into multiple shorter echo commands - Each command is now a simple string that GitLab CI can parse easily - This should resolve the 'script config should be a string' YAML error - Maintains all compression functionality while fixing syntax --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 413cf2a66..33c30a75a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -82,7 +82,8 @@ build-linux: - echo "Compressed AppImage size:" - du -h citron.AppImage.gz - echo "Note: AppImage has been compressed for artifact upload due to size limits" - - echo "To use: Download citron.AppImage.gz, then run 'gunzip citron.AppImage.gz && chmod +x citron.AppImage'" + - echo "To use: Download citron.AppImage.gz, then run:" + - echo "gunzip citron.AppImage.gz && chmod +x citron.AppImage" artifacts: paths: - citron.AppImage.gz