chore: fix some bugs with conventional commits, ref NOISSUE
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 31s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m28s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped

This commit is contained in:
2024-11-30 21:00:52 +01:00
parent 821d7ba0aa
commit e9f9da8cb0
4 changed files with 18 additions and 14 deletions

View File

@@ -45,14 +45,13 @@ clean: issetup ## Clean unused files.
.PHONY: release
release: issetup ## Create a new tag for release.
@echo "WARNING: This operation will create a version tag and push to gitea"
. ./.gitea/conventional_commits/generate-version.sh
@./.gitea/conventional_commits/generate-version.sh
.PHONY: docs
docs: issetup ## Build the documentation.
@echo "building documentation ..."
@$(ENV_PREFIX)mkdocs build
URL="site/index.html"; xdg-open $$URL || sensible-browser $$URL || x-www-browser $$URL || gnome-open $$URL || open $$URL
@mkdocs build
@URL="site/index.html"; xdg-open $$URL || sensible-browser $$URL || x-www-browser $$URL || gnome-open $$URL || open $$URL
# This project has been generated from rochacbruno/python-project-template
# __author__ = 'rochacbruno'