From c87880e5fbdeed36e7638f6b9638a5fd52818a2f Mon Sep 17 00:00:00 2001 From: "Alexander \"Ace\" Olofsson" Date: Tue, 20 Dec 2022 20:25:43 +0100 Subject: [PATCH] Use alternative entrypoint for alpine/helm --- .gitlab-ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4263a16..92bd0c3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,13 +4,17 @@ stages: - deploy lint:charts: - image: alpine/helm + image: + name: alpine/helm + entrypoint: ["/bin/sh", "-c"] stage: test script: - helm lint charts/* pages: - image: alpine/helm + image: + name: alpine/helm + entrypoint: ["/bin/sh", "-c"] stage: deploy before_script: - grep 'repository:' charts/*/Chart.yaml | awk '{ print $3 }' | uniq | xargs -rn1 sh -c 'helm repo add $(basename $0) $0'