Enable use of .tags file for custom tagging
This commit is contained in:
parent
3da5de27d7
commit
f7259ac640
2 changed files with 31 additions and 0 deletions
|
@ -48,6 +48,8 @@ fi
|
|||
|
||||
if [ -n "${PLUGIN_TAGS:-}" ]; then
|
||||
DESTINATIONS=$(echo "${PLUGIN_TAGS}" | tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
|
||||
elif [ -f .tags ]; then
|
||||
DESTINATIONS=$(cat .tags| tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
|
||||
elif [ -n "${PLUGIN_REPO:-}" ]; then
|
||||
DESTINATIONS="--destination=${PLUGIN_REPO}:latest"
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue