add INDEX_DIR argument

allow one to specify a custom location to index.yaml, which makes the
action more flexible with respect to repo layouts.
This commit is contained in:
Clenimar Souza 2021-04-18 02:01:04 -03:00
parent d7b00680cb
commit 05a64d0492
3 changed files with 16 additions and 4 deletions

View file

@ -18,6 +18,7 @@ Inputs:
* `commit_email` Explicitly specify email for commit back, default to `GITHUB_ACTOR@users.noreply.github.com` * `commit_email` Explicitly specify email for commit back, default to `GITHUB_ACTOR@users.noreply.github.com`
* `app_version` Explicitly specify app version in package. If not defined then used chart values. * `app_version` Explicitly specify app version in package. If not defined then used chart values.
* `chart_version` Explicitly specify chart version in package. If not defined then used chart values. * `chart_version` Explicitly specify chart version in package. If not defined then used chart values.
* `index_dir` The location of `index.yaml` file in the repo, defaults to the same value as `target_dir`
## Examples ## Examples

View file

@ -46,6 +46,9 @@ inputs:
chart_version: chart_version:
description: "Set the version on the chart to this version" description: "Set the version on the chart to this version"
required: false required: false
index_dir:
description: "The location of `index.yaml` file in the repo, defaults to the same value as `target_dir`"
required: false
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'
@ -63,3 +66,4 @@ runs:
- ${{ inputs.commit_email }} - ${{ inputs.commit_email }}
- ${{ inputs.app_version }} - ${{ inputs.app_version }}
- ${{ inputs.chart_version }} - ${{ inputs.chart_version }}
- ${{ inputs.index_dir }}

View file

@ -30,6 +30,7 @@ COMMIT_USERNAME=${10}
COMMIT_EMAIL=${11} COMMIT_EMAIL=${11}
APP_VERSION=${12} APP_VERSION=${12}
CHART_VERSION=${13} CHART_VERSION=${13}
INDEX_DIR=${14}
CHARTS=() CHARTS=()
CHARTS_TMP_DIR=$(mktemp -d) CHARTS_TMP_DIR=$(mktemp -d)
@ -81,6 +82,10 @@ main() {
COMMIT_EMAIL="${GITHUB_ACTOR}@users.noreply.github.com" COMMIT_EMAIL="${GITHUB_ACTOR}@users.noreply.github.com"
fi fi
if [[ -z "$INDEX_DIR" ]]; then
INDEX_DIR=${TARGET_DIR}
fi
locate locate
download download
dependencies dependencies
@ -151,18 +156,20 @@ upload() {
mkdir -p ${TARGET_DIR} mkdir -p ${TARGET_DIR}
if [[ -f "${TARGET_DIR}/index.yaml" ]]; then if [[ -f "${INDEX_DIR}/index.yaml" ]]; then
echo "Found index, merging changes" echo "Found index, merging changes"
helm repo index ${CHARTS_TMP_DIR} --url ${CHARTS_URL} --merge "${TARGET_DIR}/index.yaml" helm repo index ${CHARTS_TMP_DIR} --url ${CHARTS_URL} --merge "${INDEX_DIR}/index.yaml"
mv -f ${CHARTS_TMP_DIR}/*.tgz ${TARGET_DIR} mv -f ${CHARTS_TMP_DIR}/*.tgz ${TARGET_DIR}
mv -f ${CHARTS_TMP_DIR}/index.yaml ${TARGET_DIR}/index.yaml mv -f ${CHARTS_TMP_DIR}/index.yaml ${INDEX_DIR}/index.yaml
else else
echo "No index found, generating a new one" echo "No index found, generating a new one"
mv -f ${CHARTS_TMP_DIR}/*.tgz ${TARGET_DIR} mv -f ${CHARTS_TMP_DIR}/*.tgz ${TARGET_DIR}
helm repo index ${TARGET_DIR} --url ${CHARTS_URL} helm repo index ${INDEX_DIR} --url ${CHARTS_URL}
fi fi
git add ${TARGET_DIR} git add ${TARGET_DIR}
git add ${INDEX_DIR}/index.yaml
git commit -m "Publish $charts" git commit -m "Publish $charts"
git push origin ${BRANCH} git push origin ${BRANCH}