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 5a41040 commit 2efa250Copy full SHA for 2efa250
twine-upload.sh
@@ -43,7 +43,10 @@ INPUT_PRINT_HASH="$(get-normalized-input 'print-hash')"
43
if [[ "${INPUT_USER}" == "__token__" && -z "${INPUT_PASSWORD}" ]] ; then
44
# No password supplied by the user implies that we're in the OIDC flow;
45
# retrieve the OIDC credential and exchange it for a PyPI API token.
46
- echo "::notice::Attempting to perform OIDC credential exchange"
+ echo \
47
+ '::notice::Attempting to perform OIDC credential exchange ' \
48
+ 'to retrieve a temporary short-lived API token for authentication ' \
49
+ "against ${INPUT_REPOSITORY_URL}"
50
INPUT_PASSWORD="$(python /app/oidc-exchange.py)"
51
elif [[ "${INPUT_USER}" == "__token__" ]]; then
52
echo \
0 commit comments