Codebase list logbook / e34acae9-f9c1-4d2a-a7b9-91f24ff2b00b/main .appveyor / after_test.bat
e34acae9-f9c1-4d2a-a7b9-91f24ff2b00b/main

Tree @e34acae9-f9c1-4d2a-a7b9-91f24ff2b00b/main (Download .tar.gz)

after_test.bat @e34acae9-f9c1-4d2a-a7b9-91f24ff2b00b/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
	)
)