From 1d57753e28086cb463175276a2c1b4fbf2da9594 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Sat, 20 Sep 2025 20:28:42 +1000 Subject: [PATCH] ci: Fix YAML parsing by breaking long echo commands - Split the long echo command with && into separate echo commands - Each command is now a simple string that GitLab CI can parse - This resolves the 'script config should be a string' YAML error - Maintains all functionality while fixing syntax issues --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fa8a7f679..b56e32b77 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -83,7 +83,8 @@ build-linux: - 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:" - - echo "gunzip citron.AppImage.gz && chmod +x citron.AppImage" + - echo "gunzip citron.AppImage.gz" + - echo "chmod +x citron.AppImage" artifacts: paths: - citron.AppImage.gz