We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3a3baf commit ea29cccCopy full SHA for ea29ccc
oidc-exchange.py
@@ -55,10 +55,7 @@ def die(msg: str) -> NoReturn:
55
with _GITHUB_STEP_SUMMARY.open("a", encoding="utf-8") as io:
56
print(msg, file=io)
57
58
- # NOTE: `msg` is Markdown formatted, so we emit only the header line to
59
- # avoid clogging the console log with a full Markdown formatted document.
60
- header = msg.splitlines()[0]
61
- print(f"::error::OIDC exchange failure: {header}", file=sys.stderr)
+ print(f"::error::OIDC exchange failure: {msg}", file=sys.stderr)
62
sys.exit(1)
63
64
0 commit comments