Add ci for helm chart related to #2

This commit is contained in:
David Burke 2020-07-29 09:23:52 -04:00
parent 2530a30d7d
commit de8524b6eb

15
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,15 @@
image: alpine/helm:3.2.4
pages:
stage: deploy
script:
- mkdir public
- helm package . --destination public
- helm repo index --url https://${CI_PROJECT_NAMESPACE}.gitlab.io/${CI_PROJECT_NAME} .
- mv index.yaml ./public
artifacts:
paths:
- public
only:
- master
- tags