From 104167d7d289a300aad033234ac4bb9fe904b56b Mon Sep 17 00:00:00 2001 From: k3nny Date: Sat, 11 Jul 2026 22:56:39 +0200 Subject: [PATCH] docs(releaser): add documentation URL https://releaser.k3nny.fr - README.md: add Documentation link below the release badge - ROADMAP.md: update shipped docs-site entry with live URL - docs/hugo.toml: set baseURL to the live site address Co-Authored-By: Claude Sonnet 4.6 --- README.md | 2 ++ ROADMAP.md | 2 +- docs/hugo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 96f979a..e81751b 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ A CI-friendly release automation tool for GitFlow workflows using Conventional Commits. +**[Documentation](https://releaser.k3nny.fr)** + ## Problem Standard tools like `semantic-release` are designed for trunk-based development. In a GitFlow setup with versioned release branches (`release/1.1`, `release/1.2`), they either fail to respect the branch's version range or require brittle configuration. diff --git a/ROADMAP.md b/ROADMAP.md index 60be26f..4cd2e4a 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -74,7 +74,7 @@ - [x] ~~GitHub release support~~ — ✓ shipped v1.4.0 (`internal/ghclient`, `GITHUB_TOKEN` env, `github.token`/`github.repo` config; GitHub takes precedence over GitLab) - [x] ~~SSH agent push~~ — ✓ shipped v1.4.0 (go-git `gitssh.NewSSHAgentAuth` for `git@`/`ssh://` remotes) - [x] ~~Configurable bump rules~~ — ✓ shipped v1.4.0 (`git.releasable_types` config; filter which commit types trigger a release) -- [x] ~~Documentation site~~ — ✓ shipped v1.5.1 (Hugo + Geekdoc; installation, CLI reference, configuration, CI integration pages; deployed via Gitea CI to `gh-pages`) +- [x] ~~Documentation site~~ — ✓ shipped v1.5.1 (Hugo + Geekdoc; installation, CLI reference, configuration, CI integration pages; live at https://releaser.k3nny.fr) ## v1.5 — Multi-module, Node.js, configurable bump rules ✅ diff --git a/docs/hugo.toml b/docs/hugo.toml index 8aa4cdb..65ec41d 100644 --- a/docs/hugo.toml +++ b/docs/hugo.toml @@ -1,4 +1,4 @@ -baseURL = "/" +baseURL = "https://releaser.k3nny.fr/" title = "releaser" theme = "geekdoc"