Skip to content

Commit

Permalink
Fix OIDC token payload
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Jul 24, 2023
1 parent 1a403e4 commit 21fbee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Expand Up @@ -51,7 +51,7 @@ jobs:
// exchange the OIDC token for an API token
const mint_resp = await fetch('https://test.pypi.org/_/oidc/github/mint-token', {
method: 'post',
body: '{"token": oidc_token}' ,
body: `{"token": "${oidc_token}"}` ,
headers: {'Content-Type': 'application/json'},
}
);
Expand Down

0 comments on commit 21fbee5

Please sign in to comment.