mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 02:13:33 -05:00
Merge PR #177 into unstable/v1
This commit is contained in:
commit
b7f401de30
1 changed files with 5 additions and 1 deletions
|
@ -144,6 +144,9 @@ def assert_successful_audience_call(resp: requests.Response, domain: str):
|
||||||
|
|
||||||
def render_claims(token: str) -> str:
|
def render_claims(token: str) -> str:
|
||||||
_, payload, _ = token.split(".", 2)
|
_, payload, _ = token.split(".", 2)
|
||||||
|
|
||||||
|
# urlsafe_b64decode needs padding; JWT payloads don't contain any.
|
||||||
|
payload += "=" * (4 - (len(payload) % 4))
|
||||||
claims = json.loads(base64.urlsafe_b64decode(payload))
|
claims = json.loads(base64.urlsafe_b64decode(payload))
|
||||||
|
|
||||||
def _get(name: str) -> str: # noqa: WPS430
|
def _get(name: str) -> str: # noqa: WPS430
|
||||||
|
@ -207,7 +210,8 @@ if not mint_token_resp.ok:
|
||||||
|
|
||||||
die(
|
die(
|
||||||
_SERVER_REFUSED_TOKEN_EXCHANGE_MESSAGE.format(
|
_SERVER_REFUSED_TOKEN_EXCHANGE_MESSAGE.format(
|
||||||
reasons=reasons, rendered_claims=rendered_claims,
|
reasons=reasons,
|
||||||
|
rendered_claims=rendered_claims,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue