mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 10:23:35 -05:00
Protect env vars in Twine invocation
This commit is contained in:
parent
4820c8c9b0
commit
8e9ff975ca
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
#! /usr/bin/env bash
|
#! /usr/bin/env bash
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
|
|
||||||
TWINE_USERNAME=$INPUT_USER \
|
TWINE_USERNAME="$INPUT_USER" \
|
||||||
TWINE_PASSWORD=$INPUT_PASSWORD \
|
TWINE_PASSWORD="$INPUT_PASSWORD" \
|
||||||
TWINE_REPOSITORY_URL=$INPUT_REPOSITORY_URL \
|
TWINE_REPOSITORY_URL="$INPUT_REPOSITORY_URL" \
|
||||||
exec twine upload dist/*
|
exec twine upload dist/*
|
||||||
|
|
Loading…
Reference in a new issue