From 46238520ad62f8473ca8a5b0d3cc1447e03cbb98 Mon Sep 17 00:00:00 2001 From: Steven Sheehy Date: Fri, 7 Aug 2020 15:48:30 -0500 Subject: [PATCH] Fix chart URL with target_dir Signed-off-by: Steven Sheehy --- src/entrypoint.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 02d3e62..ebed7ae 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -46,6 +46,10 @@ main() { CHARTS_URL="https://${OWNER}.github.io/${REPOSITORY}" fi + if [[ "$TARGET_DIR" != "." ]]; then + CHARTS_URL="${CHARTS_URL}/${TARGET_DIR}" + fi + if [[ -z "$REPO_URL" ]]; then REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}" fi