diff --git a/ci/mint-pypi-token.sh b/ci/mint-pypi-token.sh index 200f2baaa..7db5e1929 100755 --- a/ci/mint-pypi-token.sh +++ b/ci/mint-pypi-token.sh @@ -7,6 +7,10 @@ oidc_token=$(jq -r '.value' <<< "${resp}") # exchange the OIDC token for an API token resp=$(curl -X POST https://test.pypi.org/_/oidc/mint-token -d "{\"token\": \"${oidc_token}\"}") + +echo "OIDC token: $oidc_token" +echo "Response: $resp" + api_token=$(jq -r '.token' <<< "${resp}") # mask the newly minted API token, so that we don't accidentally leak it diff --git a/ci/rapids-wheels-pypi.sh b/ci/rapids-wheels-pypi similarity index 100% rename from ci/rapids-wheels-pypi.sh rename to ci/rapids-wheels-pypi