Commit 2156ab5
InfoTech.io Bot
fix(workflow): replace heredoc with echo for module.json creation
GitHub Actions appears to have issues with heredoc termination in bash
scripts. Replace heredoc approach with echo to avoid EOF syntax errors.
Changes:
- Replace cat > file <<'EOF' with echo 'content' > file
- Maintain proper JSON formatting
- Avoid heredoc termination issues in GitHub Actions environment
YAML validation passes locally.
Fixes: here-document EOF syntax error in GitHub Actions
Related: #10, Stage: 2 (GitHub Actions Compatibility)1 parent d858e91 commit 2156ab5
1 file changed
Lines changed: 2 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
241 | 241 | | |
242 | 242 | | |
243 | 243 | | |
244 | | - | |
245 | | - | |
| 244 | + | |
246 | 245 | | |
247 | 246 | | |
248 | 247 | | |
| |||
253 | 252 | | |
254 | 253 | | |
255 | 254 | | |
256 | | - | |
257 | | - | |
| 255 | + | |
258 | 256 | | |
259 | 257 | | |
260 | 258 | | |
| |||
0 commit comments