Skip to content

Commit

Permalink
make: Fix package version on pypi upload rules
Browse files Browse the repository at this point in the history
  • Loading branch information
blockstreamsatellite committed Dec 31, 2024
1 parent 3a354d6 commit 22f0a6c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,19 +94,19 @@ $(COMPLETION): $(PY_FILES)

pypi: clean sdist wheel
python3 -m twine upload --repository pypi \
dist/blocksat-cli-$(VERSION).tar.gz \
dist/blocksat_cli-$(VERSION)-*.whl
dist/blocksat-cli-$(CLI_VERSION).tar.gz \
dist/blocksat_cli-$(CLI_VERSION)-*.whl
python3 -m twine upload --repository pypi \
dist/blocksat-gui-$(VERSION).tar.gz \
dist/blocksat_gui-$(VERSION)-*.whl
dist/blocksat-gui-$(GUI_VERSION).tar.gz \
dist/blocksat_gui-$(GUI_VERSION)-*.whl

testpypi: clean sdist wheel
python3 -m twine upload --repository testpypi \
dist/blocksat-cli-$(VERSION).tar.gz \
dist/blocksat_cli-$(VERSION)-*.whl
dist/blocksat-cli-$(CLI_VERSION).tar.gz \
dist/blocksat_cli-$(CLI_VERSION)-*.whl
python3 -m twine upload --repository testpypi \
dist/blocksat-gui-$(VERSION).tar.gz \
dist/blocksat_gui-$(VERSION)-*.whl
dist/blocksat-gui-$(GUI_VERSION).tar.gz \
dist/blocksat_gui-$(GUI_VERSION)-*.whl

docker: sdist $(MANPAGE) $(COMPLETION)
docker build --build-arg distro=$(DISTRO) \
Expand Down

0 comments on commit 22f0a6c

Please sign in to comment.