From 88e7376565e6175f37be81953eb93a8b9f92b363 Mon Sep 17 00:00:00 2001 From: Amelia Yukii Date: Sun, 19 May 2024 22:36:10 +0000 Subject: [PATCH] Update file .gitlab-ci.yml --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1da34db4e6..fc76389b96 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,6 +30,7 @@ testCommit: - develop - merge_requests - stable + - live-testing getImageTag: stage: deploy @@ -43,6 +44,8 @@ getImageTag: tag="latest" elif test "$CI_COMMIT_BRANCH" == "develop"; then tag="develop" + elif test "$CI_COMMIT_BRANCH" == "live-testing"; then + tag="live-testing" else tag="$CI_COMMIT_BRANCH" fi @@ -56,6 +59,7 @@ getImageTag: - stable - develop - tags + - live-testing buildDocker: stage: deploy @@ -108,3 +112,4 @@ mergeManifests: - stable - develop - tags + - live-testing