Skip to content

Commit

Permalink
Update release steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Siecje committed Jan 27, 2024
1 parent 669c951 commit 5b7e1d4
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions release.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
```shell
git add -u
git commit -m "Version X"
git tag vX
git push origin main
# Remove __pycache__ directories
cd ..
rm -rf htmd
git clone git@github.com:Siecje/htmd.git
cd htmd
git push origin vX
rm -r dist
rm -r venv
rm -r htmd.egg-info
find . -type d -name "__pycache__" -exec rm -r {} +
python3 -m venv venv
venv/bin/python -m pip install pip setuptools wheel --upgrade
venv/bin/python -m pip install build --upgrade
Expand All @@ -20,3 +21,6 @@ venv/bin/python -m pip install twine
venv/bin/twine check dist/*
venv/bin/twine upload dist/*
```


- Create new release in GitHub

0 comments on commit 5b7e1d4

Please sign in to comment.