fix: preserve v prefix for tailscale version
ci/woodpecker/pr/pr-build Pipeline was successful

This commit is contained in:
2026-06-02 23:46:51 +02:00
parent 8a34988dd4
commit 1a8b065283
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -27,9 +27,8 @@
{
"matchDatasources": ["github-releases"],
"matchPackageNames": ["tailscale/tailscale"],
"description": "TAILSCALE_VERSION ARG: only stable releases. Tailscale uses EVEN minor versions for stable (v1.98.x); ODD minors (v1.99.x) are unstable, so filter to even minors and ignore pre-releases.",
"extractVersion": "^v(?<version>\\d+\\.\\d+\\.\\d+)$",
"allowedVersions": "/^\\d+\\.\\d*[02468]\\.\\d+$/",
"description": "TAILSCALE_VERSION ARG: only stable releases. Tailscale uses EVEN minor versions for stable (v1.98.x); ODD minors (v1.99.x) are unstable, so filter to even minors and ignore pre-releases. The `v` prefix is kept (no extractVersion) so the ARG value stays v-prefixed to match the git tags cloned in the Dockerfile.",
"allowedVersions": "/^v\\d+\\.\\d*[02468]\\.\\d+$/",
"ignoreUnstable": true
},
{