mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
Fixed invalid multi-line string syntax at line 148 that was breaking YAML parsing and blocking CI on main branch. Changed from quoted multi-line string to heredoc (cat <<EOF) which is the proper way to handle multi-line strings in bash within GitHub Actions. Error: "You have an error in your yaml syntax on line 148" Root cause: Multi-line bash string using quotes breaks YAML parsing Resolution: Use heredoc for multi-line strings in bash scripts This resolves CI failure: https://github.com/czlonkowski/n8n-mcp/actions/runs/18777697750 Concieved by Romuald Członkowski - www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>