mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 02:13:33 -05:00
🐛 Avoid broken env vars passed by GHA from host
Fixes https://github.com/pypa/gh-action-pypi-publish/issues/112.
This commit is contained in:
parent
dfae161eab
commit
1350b8bd72
1 changed files with 7 additions and 0 deletions
|
@ -2,6 +2,13 @@
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
|
|
||||||
|
|
||||||
|
# NOTE: These variables are needed to combat GitHub passing broken env vars
|
||||||
|
# NOTE: from the runner VM host runtime.
|
||||||
|
# Ref: https://github.com/pypa/gh-action-pypi-publish/issues/112
|
||||||
|
export PATH="$(python -m site --user-base)/bin:${PATH}"
|
||||||
|
export PYTHONPATH="$(python -m site --user-site):${PYTHONPATH}"
|
||||||
|
|
||||||
|
|
||||||
if [[
|
if [[
|
||||||
"$INPUT_USER" == "__token__" &&
|
"$INPUT_USER" == "__token__" &&
|
||||||
! "$INPUT_PASSWORD" =~ ^pypi-
|
! "$INPUT_PASSWORD" =~ ^pypi-
|
||||||
|
|
Loading…
Reference in a new issue