We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b123db + 0a29b30 commit 86078e6Copy full SHA for 86078e6
.travis.yml
@@ -9,7 +9,7 @@ script:
9
- python -m unittest
10
deploy:
11
provider: script
12
- script: bash scripts/deploy.sh $PYPI_USER $PYPI_PASS
+ script: bash scripts/deploy.sh "${PYPI_USER}" "${PYPI_PASS}"
13
skip_cleanup: true
14
on:
15
tags: true
scripts/deploy.sh
@@ -6,4 +6,4 @@ python -m pip install --upgrade setuptools wheel
6
python -m pip install --upgrade twine
7
8
python setup.py sdist bdist_wheel
-twine upload -u $1 -p "${2}" dist/*
+twine upload -u "${1}" -p "${2}" dist/*
0 commit comments