Skip to content
Snippets Groups Projects
Verified Commit a06529b0 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

ci(charts): Add publishing mechanism for helm charts

parent be100ad7
No related branches found
No related tags found
No related merge requests found
---
include:
- local: 'images/**/.gitlab-ci.yaml'
- local: 'charts/**/.gitlab-ci.yaml'
stages:
- release
- build
......
build:
stage: build
image: quay.io/helmpack/chart-testing:v3.6.0
script:
- export TMP_DIR=$(mktemp -d)
- helm package charts/* -d "$TMP_DIR"
- for i in $(ls $TMP_DIR/*.tgz); do curl --request POST --user "gitlab-ci-token:$CI_JOB_TOKEN" --form "chart=@${i}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/helm/api/${CI_COMMIT_REF_SLUG}/charts"; done
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push"'
changes:
- charts/mok/Chart.yaml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment