mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
Merge pull request #281 from acelaya-forks/feature/docker-version
Fixed version not properly provided to docker image
This commit is contained in:
commit
05e3e87653
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue