Skip to content
Snippets Groups Projects
Commit e4224cce authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Avoid force pushing in justfile

parent 35dea104
No related merge requests found
Pipeline #22278 failed with stage
in 2 minutes and 15 seconds
...@@ -6,15 +6,15 @@ test: ...@@ -6,15 +6,15 @@ test:
release version: test release version: test
git tag {{version}} git tag {{version}}
git checkout {{version}} git checkout {{version}}
git push --tags -f
python3 setup.py sdist python3 setup.py sdist
twine upload dist/pyronn-torch-{{version}}.tar.gz twine upload dist/pyronn-torch-{{version}}.tar.gz
git push --tags
git checkout master git checkout master
wheel_release version: test wheel_release version: test
git tag {{version}} git tag {{version}}
git checkout {{version}} git checkout {{version}}
git push --tags -f
python3 setup.py bdist_wheel python3 setup.py bdist_wheel
twine upload dist/pyronn-torch-{{version}}-cp37-cp37m-linux_x86_64.whl twine upload dist/pyronn-torch-{{version}}-cp37-cp37m-linux_x86_64.whl
git push --tags
git checkout master git checkout master
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment