From 8a536cc3c595e6a68234e9a0eed62f29d441e653 Mon Sep 17 00:00:00 2001 From: "Peter Christian Glade (FG-752)" Date: Mon, 14 Feb 2022 10:17:27 +0100 Subject: [PATCH 1/3] added enterprise support --- action.yml | 4 ++++ src/entrypoint.sh | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index edffe70..e8209e9 100644 --- a/action.yml +++ b/action.yml @@ -49,6 +49,9 @@ inputs: index_dir: description: "The location of `index.yaml` file in the repo, defaults to the same value as `target_dir`" required: false + enterprise_url: + description: "The URL of enterprise github server in the format '/'" + required: false runs: using: 'docker' image: 'Dockerfile' @@ -67,3 +70,4 @@ runs: - ${{ inputs.app_version }} - ${{ inputs.chart_version }} - ${{ inputs.index_dir }} + - ${{ inputs.enterprise_url }} diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 8840658..39509e8 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -31,6 +31,7 @@ COMMIT_EMAIL=${11} APP_VERSION=${12} CHART_VERSION=${13} INDEX_DIR=${14} +ENTERPRISE_URL=${15} CHARTS=() CHARTS_TMP_DIR=$(mktemp -d) @@ -71,7 +72,11 @@ main() { fi if [[ -z "$REPO_URL" ]]; then - REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}" + if [[ -z "$ENTERPRISE_URL" ]]; then + REPO_URL="https://x-access-token:${GITHUB_TOKEN}@${ENTERPRISE_URL}/${REPOSITORY}" + else + REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}" + fi fi if [[ -z "$COMMIT_USERNAME" ]]; then From 0110a2eb76c661ea7bd2be1a83e2b863db385478 Mon Sep 17 00:00:00 2001 From: "Peter Christian Glade (FG-752)" Date: Mon, 14 Feb 2022 10:25:50 +0100 Subject: [PATCH 2/3] enterprise url fixed --- src/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 39509e8..7d406df 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -73,9 +73,9 @@ main() { if [[ -z "$REPO_URL" ]]; then if [[ -z "$ENTERPRISE_URL" ]]; then - REPO_URL="https://x-access-token:${GITHUB_TOKEN}@${ENTERPRISE_URL}/${REPOSITORY}" - else REPO_URL="https://x-access-token:${GITHUB_TOKEN}@github.com/${OWNER}/${REPOSITORY}" + else + REPO_URL="https://x-access-token:${GITHUB_TOKEN}@${ENTERPRISE_URL}/${REPOSITORY}" fi fi From 3baf78a87c348b267b2be23e4a112d998b56d701 Mon Sep 17 00:00:00 2001 From: "Peter Christian Glade (FG-752)" Date: Mon, 14 Feb 2022 10:30:23 +0100 Subject: [PATCH 3/3] added docu --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 65d4c0e..4526bfc 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Inputs: * `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. * `index_dir` The location of `index.yaml` file in the repo, defaults to the same value as `target_dir` +* `enterprise_url` The URL of enterprise github server in the format `/` ## Examples