mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 02:13:33 -05:00
twine-upload: only nudge on PyPI-looking domains
Signed-off-by: William Woodruff <william@trailofbits.com>
This commit is contained in:
parent
be695966b0
commit
e90e853e89
1 changed files with 8 additions and 2 deletions
|
@ -59,12 +59,18 @@ elif [[ "${INPUT_USER}" == '__token__' ]]; then
|
||||||
echo \
|
echo \
|
||||||
'::notice::Using a user-provided API token for authentication' \
|
'::notice::Using a user-provided API token for authentication' \
|
||||||
"against ${INPUT_REPOSITORY_URL}"
|
"against ${INPUT_REPOSITORY_URL}"
|
||||||
echo "${TRUSTED_PUBLISHING_NUDGE}"
|
|
||||||
|
if [[ "${INPUT_REPOSITORY_URL}" =~ pypi\.org ]]; then
|
||||||
|
echo "${TRUSTED_PUBLISHING_NUDGE}"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
echo \
|
echo \
|
||||||
'::notice::Using a username + password pair for authentication' \
|
'::notice::Using a username + password pair for authentication' \
|
||||||
"against ${INPUT_REPOSITORY_URL}"
|
"against ${INPUT_REPOSITORY_URL}"
|
||||||
echo "${TRUSTED_PUBLISHING_NUDGE}"
|
|
||||||
|
if [[ "${INPUT_REPOSITORY_URL}" =~ pypi\.org ]]; then
|
||||||
|
echo "${TRUSTED_PUBLISHING_NUDGE}"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[
|
if [[
|
||||||
|
|
Loading…
Reference in a new issue