1
0
mirror of https://github.com/containers/ramalama.git synced 2026-02-05 15:47:26 +01:00

Splitting pypi build and upload into dedicated make targets

Signed-off-by: Michael Engel <mengel@redhat.com>
This commit is contained in:
Michael Engel
2025-08-04 15:29:46 +02:00
parent 739d351e11
commit 393f35e6d1

View File

@@ -144,11 +144,14 @@ ifeq ($(OS),Linux)
hack/xref-helpmsgs-manpages
endif
.PHONY: pypi
pypi: clean
.PHONY: pypi-build
pypi-build: clean
make docs
python3 -m build --sdist
python3 -m build --wheel
.PHONY: pypi
pypi: pypi-build
python3 -m twine upload dist/*
.PHONY: bats