Fix chart URL with target_dir

Signed-off-by: Steven Sheehy <steven.sheehy@hedera.com>
This commit is contained in:
Steven Sheehy 2020-08-07 15:48:30 -05:00
parent ade295d5a3
commit 46238520ad

View file

@ -46,6 +46,10 @@ main() {
CHARTS_URL="https://${OWNER}.github.io/${REPOSITORY}" CHARTS_URL="https://${OWNER}.github.io/${REPOSITORY}"
fi fi
if [[ "$TARGET_DIR" != "." ]]; then
CHARTS_URL="${CHARTS_URL}/${TARGET_DIR}"
fi
if [[ -z "$REPO_URL" ]]; then if [[ -z "$REPO_URL" ]]; then
REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}" REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}"
fi fi