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
This commit is contained in:
Zephyron
2025-09-20 20:28:42 +10:00
parent d82006d49b
commit 1d57753e28

View File

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