docker-image-cleaner
is a package available on
PyPI. These are instructions on
how to make a release on PyPI. The PyPI release is done automatically by a
GitHub workflow when a tag is pushed.
For you to follow along according to these instructions, you need:
- To have push rights to the docker-image-cleaner GitHub repository.
-
Checkout main and make sure it is up to date.
ORIGIN=${ORIGIN:-origin} # set to the canonical remote, e.g. 'upstream' if 'origin' is not the official repo git checkout main git fetch $ORIGIN main git reset --hard $ORIGIN/main # WARNING! This next command deletes any untracked files in the repo git clean -xfd
-
Update CHANGELOG.md with the help of the github-activity utility.
-
Set the
version
variable in setup.py appropriately and make a commit.git add setup.py VERSION=... # e.g. 1.2.3 git commit -m "release $VERSION"
-
Reset the
version
variable in setup.py appropriately with an incremented patch version and a.dev1
element, then make a commit.git add setup.py git commit -m "back to dev"
-
Push your two commits to main.
# first push commits without a tags to ensure the # commits comes through, because a tag can otherwise # be pushed all alone without company of rejected # commits, and we want have our tagged release coupled # with a specific commit in main git push $ORIGIN main
-
Create a git tag for the pushed release commit and push it.
git tag -a $VERSION -m $VERSION HEAD~1 # then verify you tagged the right commit git log # then push it git push $ORIGIN refs/tags/$VERSION