From e22d7e735dabc085200240a852c077554fa5a928 Mon Sep 17 00:00:00 2001 From: Johnny Huynh <27847622+johnnyhuy@users.noreply.github.com> Date: Wed, 17 Apr 2024 22:52:57 +1000 Subject: [PATCH] ci: Improve versioning workflow through GitHub actions - Add `gh-bump` target to Makefile for GitHub workflow - Implement versioning automation through GitHub actions - streamline version management process for easier release management --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index e5f7d06..a03dbe2 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,9 @@ bump-minor: bump-patch: $(VENV) python -m commitizen bump --increment patch +gh-bump: + gh workflow run version.yaml + publish: build ifdef DRY_RUN $(VENV) python -m twine upload --repository testpypi dist/*