16 lines
311 B
YAML
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
|