fix(ci): add regexManager for helm version
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Markus Pesch 2022-01-30 14:35:16 +01:00
parent dd367a7877
commit 3f05eeecb1
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
3 changed files with 16 additions and 3 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?=3.8.0 HELM_VERSION?=v3.8.0
# 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

@ -30,7 +30,7 @@ case `uname -m` in
esac esac
apk add --update --no-cache wget git apk add --update --no-cache wget git
wget ${BASE_URL}/helm-v${VERSION}-linux-${ARCH}.tar.gz -O - | tar -xz wget ${BASE_URL}/helm-${VERSION}-linux-${ARCH}.tar.gz -O - | tar -xz
mv linux-${ARCH}/helm /usr/bin/helm mv linux-${ARCH}/helm /usr/bin/helm
chmod +x /usr/bin/helm chmod +x /usr/bin/helm
rm -rf linux-${ARCH} rm -rf linux-${ARCH}

View File

@ -4,5 +4,18 @@
"automergeStrategy": "merge-commit", "automergeStrategy": "merge-commit",
"automergeType": "pr", "automergeType": "pr",
"rebaseLabel": "renovate/rebase", "rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch" "rebaseWhen": "behind-base-branch",
"regexManagers": [
{
"fileMatch": [
"^Makefile$"
],
"matchStrings": [
"HELM_VERSION?=(?<currentValue>.*)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "helm/helm",
"versioningTemplate": "semver"
}
]
} }