Updated makefile

This commit is contained in:
Mark Qvist 2026-04-21 17:10:27 +02:00
commit 1732cac806

View file

@ -61,9 +61,18 @@ release: test remove_symlinks build_sdist build_wheel build_pure_wheel documenta
debug: remove_symlinks build_wheel build_pure_wheel create_symlinks debug: remove_symlinks build_wheel build_pure_wheel create_symlinks
upload: upload: upload-rns upload-rnspure
@echo Ready to publish release, hit enter to continue
upload-rns:
@echo Ready to publish rns release, hit enter to continue
@read VOID @read VOID
@echo Uploading to PyPi... @echo Uploading to PyPi...
twine upload dist/* twine upload dist/rns-*.whl dist/rns-*.tar.gz
@echo Release published
upload-rnspure:
@echo Ready to publish rnspure release, hit enter to continue
@read VOID
@echo Uploading to PyPi...
twine upload dist/rnspure-*.whl
@echo Release published @echo Release published