f27fa42b87
Release / release (push) Successful in 24s
Previous attempt used `python3 -c "..." KEY=VALUE` which passes KEY=VALUE as positional args, not environment variables — the python block then crashed with KeyError: 'BODY' because nothing actually set it in the environment. Consolidate into a single heredoc-fed python3 block that reads RELEASE_NOTES from the already-exported env var and reads TAG/VERSION/ IS_PRE after an explicit `export`. Uses <<'PY' so shell metachars in the Python source (backticks, $, quotes) are not interpreted. Also drops the redundant intermediate BODY variable — body is built directly inside the single python invocation.