glitchtip-helm-chart/.gitlab-ci.yml
David Burke 2a71288e2c hmm
2020-07-29 09:26:30 -04:00

18 lines
351 B
YAML

image:
name: alpine/helm:3.2.4
entrypoint: ["/bin/sh", "-c"]
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