mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-03 14:57:22 +03:00
Improved docker build script to avoid duplicating code
This commit is contained in:
parent
584d1ec1ce
commit
38fc402b16
1 changed files with 4 additions and 4 deletions
|
@ -3,12 +3,12 @@ set -e
|
||||||
|
|
||||||
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
||||||
|
|
||||||
# If a tag exists, build both that tag and stable
|
if [[ -z $TRAVIS_TAG ]]; then
|
||||||
if [[ ! -z $TRAVIS_TAG ]]; then
|
docker build -t shlinkio/shlink-web-client:latest .
|
||||||
docker build --build-arg VERSION=${TRAVIS_TAG#?} -t shlinkio/shlink-web-client:${TRAVIS_TAG#?} -t shlinkio/shlink-web-client:stable .
|
else
|
||||||
|
docker build --build-arg VERSION=${TRAVIS_TAG#?} -t shlinkio/shlink-web-client:${TRAVIS_TAG#?} -t shlinkio/shlink-web-client:stable -t shlinkio/shlink-web-client:latest .
|
||||||
docker push shlinkio/shlink-web-client:${TRAVIS_TAG#?}
|
docker push shlinkio/shlink-web-client:${TRAVIS_TAG#?}
|
||||||
docker push shlinkio/shlink-web-client:stable
|
docker push shlinkio/shlink-web-client:stable
|
||||||
fi
|
fi
|
||||||
|
|
||||||
docker build -t shlinkio/shlink-web-client:latest .
|
|
||||||
docker push shlinkio/shlink-web-client:latest
|
docker push shlinkio/shlink-web-client:latest
|
||||||
|
|
Loading…
Reference in a new issue