[#757] Add quotes around environment variables to be a little safer

This commit is contained in:
Jonathan Wren 2019-11-29 11:37:01 -08:00
parent a1392d9c49
commit eb4b3ead51

View file

@ -32,8 +32,8 @@ jobs:
- PATH=/c/Python37:/c/Python37/Scripts:$PATH - PATH=/c/Python37:/c/Python37/Scripts:$PATH
- stage: "Deploy" - stage: "Deploy"
before_deploy: before_deploy:
- poetry config http-basic.pypi $PYPI_USER $PYPI_PASS - poetry config http-basic.pypi "$PYPI_USER" "$PYPI_PASS"
- poetry version $TRAVIS_TAG - poetry version "$TRAVIS_TAG"
- poetry build - poetry build
deploy: deploy:
- provider: script - provider: script