Skip to content

Commit c9d032c

Browse files
committed
Debug repo selection
1 parent 8494561 commit c9d032c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

entrypoint.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
set -o errexit -o pipefail -o nounset
44

5-
GITHUB_REPO=$INPUT_GITHUB_REPO
6-
UPLOAD_REPO=$INPUT_UPLOAD_REPO
7-
TWINE_USERNAME=$INPUT_TWINE_USERNAME
8-
TWINE_PASSWORD=$INPUT_TWINE_PASSWORD
9-
VERIFY_METADATA=$INPUT_VERIFY_METADATA
10-
SKIP_EXISTING=$INPUT_SKIP_EXISTING
11-
VERBOSE=$INPUT_VERBOSE
5+
GITHUB_REPO=${INPUT_GITHUB_REPO}
6+
UPLOAD_REPO=${INPUT_UPLOAD_REPO:-}
7+
TWINE_USERNAME=${INPUT_TWINE_USERNAME}
8+
TWINE_PASSWORD=${INPUT_TWINE_PASSWORD}
9+
VERIFY_METADATA=${INPUT_VERIFY_METADATA}
10+
SKIP_EXISTING=${INPUT_SKIP_EXISTING}
11+
VERBOSE=${INPUT_VERBOSE}
1212

1313
REPO_NAME=$(cut -d "/" -f2 <<< ${GITHUB_REPO})
1414

0 commit comments

Comments
 (0)