Compare commits

..

2 Commits

Author SHA1 Message Date
CSRBot b97c207986 chore(deps): update docker.io/renovate/renovate docker tag to v31.53.2
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details
2022-01-25 22:02:12 +00:00
Markus Pesch 6ea2c6d5eb
fix(ci): deploy helm chart
continuous-integration/drone/push Build is passing Details
2022-01-25 22:08:51 +01:00
1 changed files with 29 additions and 0 deletions

View File

@ -51,6 +51,35 @@ trigger:
exclude:
- tag
---
kind: pipeline
type: kubernetes
name: release
platform:
os: linux
steps:
- name: release-helm-chart
commands:
- helm plugin install https://github.com/chartmuseum/helm-push.git
- helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
- helm package --version ${DRONE_TAG} .
- helm cm-push ${DRONE_REPO_NAME%-charts}-${DRONE_TAG}.tgz volker.raschek
environment:
HELM_REPO_PASSWORD:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: docker.io/alpine/helm:3.7.2
trigger:
event:
- tag
repo:
- volker.raschek/renovate-charts
---
kind: pipeline
type: kubernetes