Files
awx/.github/workflows
Rodrigo Horie 6fd612a058 fix: pipe blob content via stdin to avoid ARG_MAX limit
The base64-encoded controller.json (~2.7MB) exceeds the OS argument
length limit when passed as a command-line argument to gh api via
-f "content=$(base64 ...)". This causes the blob creation step to
fail with "Argument list too long".

Pipe the content through base64 | jq | gh api --input - so the
payload never hits the command line.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-06-17 15:59:33 -03:00
..