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
This commit is contained in:
Zephyron
2025-09-19 15:36:03 +10:00
parent e93bc86c93
commit 30cb38b6dd

View File

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