From 1f13023c39956be83377e6f66b2d6aecf6cc85ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Wed, 10 Jan 2018 16:54:14 +0100 Subject: [PATCH] fix: VERSION build arg was missing, create version matrix. --- .drone.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index fce95f6..0dde971 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,6 +2,24 @@ pipeline: docker: image: plugins/docker repo: docker.jcg.re/airsonic + build_args: + - VERSION=${VERSION} registry: docker.jcg.re - secrets: [ docker_username, docker_password ] + secrets: [docker_username, docker_password] + tags: ${VERSION} + docker: + image: plugins/docker + repo: docker.jcg.re/airsonic + registry: docker.jcg.re + secrets: [docker_username, docker_password] tags: latest + when: + matrix: + VERSION=v10.1.1 + +matrix: + VERSION: + - v10.1.1 + - v10.1.0 + - v10.0.1 + - v10.0.0