glitchtip-helm-chart/.gitlab-ci.yml
2021-06-02 19:43:08 -04:00

23 lines
393 B
YAML

image:
name: alpine/helm:3.5.4
entrypoint: ["/bin/sh", "-c"]
lint:
stage: test
script:
- helm lint
pages:
stage: deploy
script:
- mkdir public
- helm package .
- helm repo index --url https://${CI_PROJECT_NAMESPACE}.gitlab.io/${CI_PROJECT_NAME} .
- mv index.yaml glitchtip-*.tgz ./public
artifacts:
paths:
- public
only:
- master
- tags