diff --git a/appveyor.yml b/appveyor.yml index f5067c7..b27ce63 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ environment: password: - secure: uOcv5TOm/CgwOmiLQhNX+g== + secure: encrypted_pypi_password os: Visual Studio 2015 matrix: @@ -37,10 +37,10 @@ deploy_script: - echo pypi >> %USERPROFILE%\\.pypirc - echo [pypi] >> %USERPROFILE%\\.pypirc - echo repository=https://pypi.python.org/pypi >> %USERPROFILE%\\.pypirc - - echo username=zope.wheelbuilder >> %USERPROFILE%\\.pypirc + - echo username=kmike >> %USERPROFILE%\\.pypirc - echo password=%password% >> %USERPROFILE%\\.pypirc - set HOME=%USERPROFILE% - pip install wheel twine - - ps: if($env:APPVEYOR_REPO_TAG -eq $TRUE) { python -W ignore setup.py bdist_wheel bdist_egg && twine upload dist/* } + - ps: if($env:APPVEYOR_REPO_TAG -eq $TRUE) { python -W ignore setup.py bdist_wheel bdist_egg; twine upload dist/* } deploy : on