added enterprise support

This commit is contained in:
Peter Christian Glade (FG-752) 2022-02-14 10:17:27 +01:00
parent 12f5926e62
commit 8a536cc3c5
2 changed files with 10 additions and 1 deletions

View file

@ -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 '<server-url>/<organisation>'"
required: false
runs:
using: 'docker'
image: 'Dockerfile'
@ -67,3 +70,4 @@ runs:
- ${{ inputs.app_version }}
- ${{ inputs.chart_version }}
- ${{ inputs.index_dir }}
- ${{ inputs.enterprise_url }}

View file

@ -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