mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 06:20:08 +01:00
fix template variable
This commit is contained in:
parent
3af39f2183
commit
cb83f34f80
1 changed files with 3 additions and 2 deletions
|
|
@ -174,8 +174,8 @@ elif [[ ! ${GIT_REPO_URL} =~ ^https?://[^/]+/[^/]+/[^/]+(/|.git)?$ ]]; then
|
|||
exit 1;
|
||||
fi
|
||||
|
||||
if [[ -z $DOCKER_ALPINE_BASE_IMAGE ]]; then
|
||||
DOCKER_ALPINE_BASE_IMAGE=frolvlad/alpine-glibc
|
||||
if [[ -z $DOCKER_BASE_IMAGE ]]; then
|
||||
DOCKER_BASE_IMAGE=frolvlad/alpine-glibc
|
||||
fi
|
||||
|
||||
if [[ -z ${MODULE_NAME} ]]; then
|
||||
|
|
@ -211,6 +211,7 @@ function format_template()
|
|||
| sed "s;\${GIT_REPO_DOMAIN};${GIT_REPO_DOMAIN};g" \
|
||||
| sed "s;\${DEFAULT_PYTHON_VERSION};${DEFAULT_PYTHON_VERSION};g" \
|
||||
| sed "s;\${DOCKER_REGISTRY_DOMAIN};${DOCKER_REGISTRY_DOMAIN};g" \
|
||||
| sed "s;\${DOCKER_BASE_IMAGE};${DOCKER_BASE_IMAGE};g" \
|
||||
| sed "s;\${PAGES_DOMAIN};${PAGES_DOMAIN};g" \
|
||||
| sed "s;\${PAGES_URL};${PAGES_URL};g" \
|
||||
| sed "s;\${AUTHOR_CONTACT};${AUTHOR_CONTACT};g" \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue