sdfsdf #4

Closed
CSRBot wants to merge 15 commits from renovate/helm-3.x into master
3 changed files with 16 additions and 3 deletions
Showing only changes of commit 3f05eeecb1 - Show all commits

View File

@ -1,6 +1,6 @@
# HELM_VERSION
# Only required to install a specifiy version
HELM_VERSION?=3.8.0
HELM_VERSION?=v3.8.0
# CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a

View File

@ -30,7 +30,7 @@ case `uname -m` in
esac
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
chmod +x /usr/bin/helm
rm -rf linux-${ARCH}

View File

@ -4,5 +4,18 @@
"automergeStrategy": "merge-commit",
"automergeType": "pr",
"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"
}
]
}