diff --git a/CHANGELOG.md b/CHANGELOG.md index 29096301..b88f10d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), #### 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. +* [#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 diff --git a/scripts/docker/build b/scripts/docker/build index 278d6e0e..a681ae78 100755 --- a/scripts/docker/build +++ b/scripts/docker/build @@ -27,7 +27,7 @@ else [[ $TRAVIS_TAG != *"alpha"* && $TRAVIS_TAG != *"beta"* ]] && TAGS="${TAGS} -t ${DOCKER_IMAGE}:stable" docker buildx build --push \ - --build-arg SHLINK_VERSION=${TRAVIS_TAG#?} \ + --build-arg VERSION=${TRAVIS_TAG#?} \ --platform ${PLATFORMS} \ ${TAGS} . fi