Skip to content

Commit

Permalink
Merge pull request #108 from george0st/transaction
Browse files Browse the repository at this point in the history
Repair shell script
  • Loading branch information
george0st authored Jan 1, 2024
2 parents 95f4eef + 56cd331 commit 3a5fba3
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
# pip install --upgrade build
# pip install --upgrade twine

rmdir /S /Q dist
rmdir /S /Q build
rmdir /S /Q qgate_sln_mlrun.egg-info
# rmdir /S /Q dist
# rmdir /S /Q build
# rmdir /S /Q qgate_sln_mlrun.egg-info
rm -rf dist
rm -rf build
rm -rf qgate_sln_mlrun.egg-info

# helper 'https://www.scivision.dev/python-minimal-package/'
# https://pypa-build.readthedocs.io/en/latest/
Expand All @@ -14,6 +17,9 @@ python -m build --wheel
# twine upload is supported
twine upload dist/* --verbose -u__token__

rmdir /S /Q dist
rmdir /S /Q build
rmdir /S /Q qgate_sln_mlrun.egg-info
# rmdir /S /Q dist
# rmdir /S /Q build
# rmdir /S /Q qgate_sln_mlrun.egg-info
rm -rf dist
rm -rf build
rm -rf qgate_sln_mlrun.egg-info

0 comments on commit 3a5fba3

Please sign in to comment.