diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 36a756f..1fada32 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -11,6 +11,7 @@ REPOSITORY=$5 BRANCH=$6 HELM_VERSION=$7 +CHARTS=() CHARTS_TMP_DIR=$(mktemp -d) REPO_ROOT=$(git rev-parse --show-toplevel) REPO_URL="" @@ -44,12 +45,25 @@ main() { REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}" fi + locate download + dependencies lint package upload } +locate() { + for dir in $(find "${CHARTS_DIR}" -type d -mindepth 1 -maxdepth 1); do + if [[ -f "${dir}/Chart.yaml" ]]; then + CHARTS+=("${dir}") + echo "Found chart directory ${dir}" + else + echo "Ignoring non-chart directory ${dir}" + fi + done +} + download() { tmpDir=$(mktemp -d) @@ -62,12 +76,18 @@ download() { rm -rf $tmpDir } +dependencies() { + for chart in ${CHARTS[@]}; do + helm dependency update "${chart}" + done +} + lint() { - helm lint ${REPO_ROOT}/${CHARTS_DIR}/*/ + helm lint ${CHARTS[*]} } package() { - helm package -u ${REPO_ROOT}/${CHARTS_DIR}/*/ --destination ${CHARTS_TMP_DIR} + helm package ${CHARTS[*]} --destination ${CHARTS_TMP_DIR} } upload() { diff --git a/testdata/notchart/README.md b/testdata/notchart/README.md new file mode 100644 index 0000000..8542472 --- /dev/null +++ b/testdata/notchart/README.md @@ -0,0 +1 @@ +This folder is not a chart and should be skipped