Commit 7b6c79b7 authored by Marius Gedminas's avatar Marius Gedminas Committed by GitHub

Merge pull request #93 from zopefoundation/cleaner-releases

Avoid spurious "failures" on Appveyor during releases
parents bb089361 4e46cd23
......@@ -22,6 +22,7 @@ install:
- pip install -e .[test,ZODB]
build_script:
- python -m pip install -U pip
- pip install wheel
- python -W ignore setup.py -q bdist_wheel
......@@ -33,6 +34,6 @@ artifacts:
name: wheel
deploy_script:
- ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE) { pip install twine; twine upload dist/* }
- ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE) { pip install twine; twine upload --skip-existing dist/* }
deploy: on
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment