From f3085ac2bd737022cc3aeba6f5adc5343f9d4e36 Mon Sep 17 00:00:00 2001 From: kalo <24719519+KaloyanTanev@users.noreply.github.com> Date: Wed, 2 Sep 2026 13:54:32 +0300 Subject: [PATCH] ci: publish gloas docker image tag --- .github/workflows/build-push-deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-push-deploy.yml b/.github/workflows/build-push-deploy.yml index 86db59745..16757e2dc 100644 --- a/.github/workflows/build-push-deploy.yml +++ b/.github/workflows/build-push-deploy.yml @@ -3,6 +3,7 @@ on: branches: - main* - electra + - gloas tags: - 'v*' name: Build and Publish Docker Image @@ -45,8 +46,11 @@ jobs: # Tag "electra" only when pushing to the "electra" branch type=raw,value=electra,event=branch,enable=${{ github.ref == 'refs/heads/electra' }} + # Tag "gloas" only when pushing to the "gloas" branch + type=raw,value=gloas,event=branch,enable=${{ github.ref == 'refs/heads/gloas' }} + # Tag "$APP_VERSION" on git-push-to-branch events - type=raw,value=${{ env.APP_VERSION }},event=branch,enable=${{ github.ref != 'refs/heads/electra' }} + type=raw,value=${{ env.APP_VERSION }},event=branch,enable=${{ github.ref != 'refs/heads/electra' && github.ref != 'refs/heads/gloas' }} # Tag "tag ref" on git-tag events