Codebase list logbook / 231b5e59-0504-48e5-889c-bbe31bc20259/main .appveyor / after_test.bat
231b5e59-0504-48e5-889c-bbe31bc20259/main

Tree @231b5e59-0504-48e5-889c-bbe31bc20259/main (Download .tar.gz)

after_test.bat @231b5e59-0504-48e5-889c-bbe31bc20259/mainraw · history · blame

1
2
3
4
5
6
IF DEFINED CYBUILD (
	%BUILD% python setup.py bdist_wheel
	IF "%APPVEYOR_REPO_TAG%"=="true" (
		twine upload -u %PYPI_USERNAME% -p %PYPI_PASSWORD% dist\*.whl
	)
)