fix(ci): control versioning via regex
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Markus Pesch 2022-01-30 15:37:10 +01:00
parent 9da5bf03ea
commit 463cd40c97
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# HELM_VERSION # HELM_VERSION
# Only required to install a specifiy version # Only required to install a specifiy version
HELM_VERSION?=v3.7.0 # renovate: datasource=github-releases depName=helm lookupName=helm/helm HELM_VERSION?=v3.7.0 # renovate: datasource=github-releases depName=helm lookupName=helm/helm versioning=semver
# CONTAINER_RUNTIME # CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a # The CONTAINER_RUNTIME variable will be used to specified the path to a

View File

@ -12,9 +12,8 @@
"^Makefile$" "^Makefile$"
], ],
"matchStrings": [ "matchStrings": [
"HELM_VERSION\\?=(?<currentValue>.*) # renovate: datasource=(?<datasource>.*) depName=(?<depName>.*) (lookupName=(?<lookupName>.*))?" "HELM_VERSION\\?=(?<currentValue>.*) # renovate: datasource=(?<datasource>.*) depName=(?<depName>.*) (lookupName=(?<lookupName>.*))? (versioning=(?<versioning>.*))?"
], ]
"versioningTemplate": "semver"
} }
] ]
} }