Skip to content

Commit

Permalink
chore(actions): fix rename for wheel and upload files (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
portellaa authored Jan 20, 2025
1 parent c1724f9 commit 7e1363c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7e1363c

Please sign in to comment.