deploy-docs CI rejects micro-calver tags (4-part versions) #141
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Bug
The
deploy-docsjob in CI fails with:Root cause
The regex guard in
.forgejo/workflows/ci.ymlline 94:Only matches 3-part calver (e.g.
2026.8.12), but the new micro-calver scheme from issue #137 uses 4-part tags (e.g.2026.8.12.2).Fix
Update the regex to allow an optional 4th component:
Plan
.forgejo/workflows/ci.ymlline 94 from^[0-9]{4}\.[0-9]{1,2}\.[0-9]{1,2}$to^[0-9]{4}\.[0-9]{1,2}\.[0-9]{1,2}(\.[0-9]+)?$One-line fix. Same branch as #140 (
fix/issue-140-141-regressions).