From 7e1363c874ab6139f3bbe04fc1efa6383f2eee9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Portela=20Afonso?= Date: Mon, 20 Jan 2025 16:30:29 +0000 Subject: [PATCH] chore(actions): fix rename for wheel and upload files (#142) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e847e663..c49c9611 100644 --- a/Makefile +++ b/Makefile @@ -72,12 +72,12 @@ package: ### Builds the package in wheel format wheel: ### Compiles the wheel test -d wheels || mkdir -p wheels - cp dist/ydata_sdk-$(version)-py3-none-any.whl wheels/ydata_sdk-$(version)-py$(PYV)-none-any.whl - $(PYTHON) -m pyc_wheel wheels/ydata_sdk-$(version)-py$(PYV)-none-any.whl + cp dist/ydata_fabric_sdk-$(version)-py3-none-any.whl wheels/ydata_fabric_sdk-$(version)-py$(PYV)-none-any.whl + $(PYTHON) -m pyc_wheel wheels/ydata_fabric_sdk-$(version)-py$(PYV)-none-any.whl $(PYTHON) -m twine check wheels/* upload: - $(PYTHON) -m twine upload -r ydata wheels/ydata_sdk-$(version)-py$(PYV)-none-any.whl + $(PYTHON) -m twine upload -r ydata wheels/ydata_fabric_sdk-$(version)-py$(PYV)-none-any.whl publish-docs: ### Publishes the documentation mike deploy --push --update-aliases $(version) latest