Skip to content

Commit 21fbee5

Browse files
committed
Fix OIDC token payload
1 parent 1a403e4 commit 21fbee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/create-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
// exchange the OIDC token for an API token
5252
const mint_resp = await fetch('https://test.pypi.org/_/oidc/github/mint-token', {
5353
method: 'post',
54-
body: '{"token": oidc_token}' ,
54+
body: `{"token": "${oidc_token}"}` ,
5555
headers: {'Content-Type': 'application/json'},
5656
}
5757
);

0 commit comments

Comments
 (0)