Merge pull request #281 from acelaya-forks/feature/docker-version

Fixed version not properly provided to docker image
This commit is contained in:
Alejandro Celaya 2020-06-06 08:58:41 +02:00 committed by GitHub
commit 05e3e87653
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
#### Fixed #### Fixed
* [#276](https://github.com/shlinkio/shlink-web-client/issues/276) Fixed default grouping used for visits line chart, making it be dynamic depending on how old the short URL is. * [#276](https://github.com/shlinkio/shlink-web-client/issues/276) Fixed default grouping used for visits line chart, making it be dynamic depending on how old the short URL is.
* [#280](https://github.com/shlinkio/shlink-web-client/issues/280) Fixed shlink-web-client version not being properly passed when building stable tags of the docker image.
## 2.5.0 - 2020-05-31 ## 2.5.0 - 2020-05-31

View file

@ -27,7 +27,7 @@ else
[[ $TRAVIS_TAG != *"alpha"* && $TRAVIS_TAG != *"beta"* ]] && TAGS="${TAGS} -t ${DOCKER_IMAGE}:stable" [[ $TRAVIS_TAG != *"alpha"* && $TRAVIS_TAG != *"beta"* ]] && TAGS="${TAGS} -t ${DOCKER_IMAGE}:stable"
docker buildx build --push \ docker buildx build --push \
--build-arg SHLINK_VERSION=${TRAVIS_TAG#?} \ --build-arg VERSION=${TRAVIS_TAG#?} \
--platform ${PLATFORMS} \ --platform ${PLATFORMS} \
${TAGS} . ${TAGS} .
fi fi