Fix dep build call in CI

This commit is contained in:
Alexander Olofsson 2021-03-22 09:53:05 +01:00
parent 09e744d340
commit 1a6a872b06
No known key found for this signature in database
GPG key ID: D439C9470CB04C73

View file

@ -17,7 +17,7 @@ pages:
entrypoint: ["/bin/sh", "-c"] entrypoint: ["/bin/sh", "-c"]
stage: deploy stage: deploy
script: script:
- (cd charts; ls -0 | xargs -0rn1 helm dependency build) - (cd charts; ls -1 | xargs -rn1 helm dependency build)
- mkdir -p public - mkdir -p public
- "echo \"User-Agent: *\nDisallow: /\" > ./public/robots.txt" - "echo \"User-Agent: *\nDisallow: /\" > ./public/robots.txt"
- (cd public; helm package ../charts/*) - (cd public; helm package ../charts/*)