From de8524b6eb4b94e9ff77f10b52ed009fefe34c1b Mon Sep 17 00:00:00 2001 From: David Burke Date: Wed, 29 Jul 2020 09:23:52 -0400 Subject: [PATCH] Add ci for helm chart related to #2 --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..fa3d2b5 --- /dev/null +++ b/.gitlab-ci.yml @@ -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