From b89a539dd7be31d821172946a36fd99b8a69e117 Mon Sep 17 00:00:00 2001 From: Carter Date: Wed, 11 Jun 2025 12:00:21 -0600 Subject: [PATCH] fixed build stage --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c728d1b..c8f6158 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -379,9 +379,9 @@ build:streamline: before_script: - docker login -u ${CI_REGISTRY_USER} -p ${CI_JOB_TOKEN} ${CI_REGISTRY} script: - - docker build -t ${CI_REGISTRY}/brandx/bxt-app/streamline:${CI_COMMIT_SHA} . - - docker tag ${CI_REGISTRY}/brandx/bxt-app/streamline:${CI_COMMIT_SHA} ${CI_REGISTRY}/brandx/bxt-app/production:latest - - docker push ${CI_REGISTRY}/brandx/bxt-app/streamline + - docker build -t ${CI_REGISTRY}/brandx/bxt-app/production:${CI_COMMIT_SHA} . + - docker tag ${CI_REGISTRY}/brandx/bxt-app/production:${CI_COMMIT_SHA} ${CI_REGISTRY}/brandx/bxt-app/production:streamline + - docker push ${CI_REGISTRY}/brandx/bxt-app/production:streamline deploy:streamline: image: docker:20.10.21