From 3ea406044bd8481aa21d29c3168582a5b554803c Mon Sep 17 00:00:00 2001 From: Guillermo Date: Tue, 17 Feb 2026 10:47:11 +0000 Subject: [PATCH] change docker image tag build process --- .gitea/workflows/tag.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/tag.yaml b/.gitea/workflows/tag.yaml index a924896..7d153d6 100644 --- a/.gitea/workflows/tag.yaml +++ b/.gitea/workflows/tag.yaml @@ -34,7 +34,7 @@ jobs: with: context: frontend push: true - tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/frontend-analytics-demo:${{ GIT_TAG_NAME }} + tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/frontend-analytics-demo:${{ step.tagName.outputs.tag }} platforms: linux/amd64 file: frontend/Dockerfile @@ -43,7 +43,7 @@ jobs: with: context: backend push: true - tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/backend-analytics-demo:$GIT_TAG_NAME + tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/backend-analytics-demo:${{ step.tagName.outputs.tag }} platforms: linux/amd64 file: backend/Dockerfile