mirror of
https://github.com/fsecada01/Pygentic-AI.git
synced 2026-05-11 19:54:59 +00:00
BREAKING: Remove custom action approach (too complex, failing) Issue: Custom action with toJSON(secrets) failing due to: - Special characters in SSH_PRIVATE_KEY - Shell escaping complexity - JSON parsing edge cases Solution: Back to basics - direct env vars in workflow - More verbose but 100% reliable - No shell escaping issues - Standard GitHub Actions pattern - Works with all secret types Trade-off accepted: - Verbose: 25 env var declarations - Reliable: No parsing, no escaping, no failures - Maintainable: Add secrets via 'gh secret set' - Standard: Uses GitHub's native secret injection "Premature optimization is the root of all evil" - Knuth Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>