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 159334b commit 2354014Copy full SHA for 2354014
action.yml
@@ -18,7 +18,7 @@ inputs:
18
upload_repo:
19
description: Repo to upload to with twine, defaults to main PyPI repo
20
required: false
21
- defaults: https://pypi.org/
+ defaults: 'https://pypi.org/'
22
verify_metadata:
23
description: Verify build metadata before publication, defaults to false
24
entrypoint.sh
@@ -42,7 +42,7 @@ python setup.py sdist bdist_wheel
42
43
echo "---------------- PUBLISH PACKAGE ----------------"
44
45
-echo "Using repository: ${UPLOAD_REPO}"
+echo "-------- Using repository: ${UPLOAD_REPO}"
46
47
if [[ ${VERIFY_METADATA} != "false" ]] ; then
48
twine check dist/*
0 commit comments