From 8732b2f668074a83562a5d17c94fe7f8c4e34f7c Mon Sep 17 00:00:00 2001 From: Renaud Gaubert Date: Thu, 23 Apr 2020 02:08:57 -0700 Subject: [PATCH] CI now uses CI_COMMIT_TAG Signed-off-by: Renaud Gaubert --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3af055333..446384cfa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,7 +27,7 @@ release:device-plugin: - apk add make - docker login -u "${REGISTRY_USER}" -p "${REGISTRY_TOKEN}" - - make VERSION="${CI_COMMIT_SHA}" all - - make VERSION="${CI_COMMIT_SHA}" push - - make VERSION="${CI_COMMIT_SHA}" push-short - - make VERSION="${CI_COMMIT_SHA}" push-latest + - make VERSION="${CI_COMMIT_TAG}" all + - make VERSION="${CI_COMMIT_TAG}" push + - make VERSION="${CI_COMMIT_TAG}" push-short + - make VERSION="${CI_COMMIT_TAG}" push-latest