Merge pull request #2627 from freqtrade/fix/dockerlatest

Docker: Build latest along with develop image
This commit is contained in:
Matthias 2019-12-08 11:42:27 +01:00 committed by GitHub
commit 1495c93083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ if [ $? -ne 0 ]; then
fi
# Tag as latest for develop builds
if [ "${GITHUB_REF}" = "develop" ]; then
if [ "${TAG}" = "develop" ]; then
docker tag freqtrade:$TAG ${IMAGE_NAME}:latest
fi