glitchtip-helm-chart/.gitlab-ci.yml
2020-07-29 09:23:52 -04:00

16 lines
311 B
YAML

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