commit
83569eed23
3 changed files with 11 additions and 1 deletions
|
@ -19,6 +19,7 @@ Inputs:
|
||||||
* `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`
|
* `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 `<server-url>/<organisation>`
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,9 @@ inputs:
|
||||||
index_dir:
|
index_dir:
|
||||||
description: "The location of `index.yaml` file in the repo, defaults to the same value as `target_dir`"
|
description: "The location of `index.yaml` file in the repo, defaults to the same value as `target_dir`"
|
||||||
required: false
|
required: false
|
||||||
|
enterprise_url:
|
||||||
|
description: "The URL of enterprise github server in the format '<server-url>/<organisation>'"
|
||||||
|
required: false
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
image: 'Dockerfile'
|
image: 'Dockerfile'
|
||||||
|
@ -67,3 +70,4 @@ runs:
|
||||||
- ${{ inputs.app_version }}
|
- ${{ inputs.app_version }}
|
||||||
- ${{ inputs.chart_version }}
|
- ${{ inputs.chart_version }}
|
||||||
- ${{ inputs.index_dir }}
|
- ${{ inputs.index_dir }}
|
||||||
|
- ${{ inputs.enterprise_url }}
|
||||||
|
|
|
@ -31,6 +31,7 @@ COMMIT_EMAIL=${11}
|
||||||
APP_VERSION=${12}
|
APP_VERSION=${12}
|
||||||
CHART_VERSION=${13}
|
CHART_VERSION=${13}
|
||||||
INDEX_DIR=${14}
|
INDEX_DIR=${14}
|
||||||
|
ENTERPRISE_URL=${15}
|
||||||
|
|
||||||
CHARTS=()
|
CHARTS=()
|
||||||
CHARTS_TMP_DIR=$(mktemp -d)
|
CHARTS_TMP_DIR=$(mktemp -d)
|
||||||
|
@ -71,7 +72,11 @@ main() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "$REPO_URL" ]]; then
|
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}@github.com/${OWNER}/${REPOSITORY}"
|
||||||
|
else
|
||||||
|
REPO_URL="https://x-access-token:${GITHUB_TOKEN}@${ENTERPRISE_URL}/${REPOSITORY}"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "$COMMIT_USERNAME" ]]; then
|
if [[ -z "$COMMIT_USERNAME" ]]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue