From 74cd4463bfd677a6667fd8dbfe834009a1f4e464 Mon Sep 17 00:00:00 2001 From: Alex Shevchuk Date: Tue, 19 Aug 2025 02:39:44 +0300 Subject: [PATCH] 33 --- .gitea/workflows/deploy_staging.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/deploy_staging.yaml b/.gitea/workflows/deploy_staging.yaml index ee3debe..5db0623 100644 --- a/.gitea/workflows/deploy_staging.yaml +++ b/.gitea/workflows/deploy_staging.yaml @@ -87,6 +87,10 @@ jobs: IMAGE_NAME: molvaapp/test_deploy CONFIG_FILE: .build/config/staging.yaml run: | + echo "Building image for ${{ inputs.environment }} environment" + echo "Git tag : ${{ steps.git-metadata.outputs.GIT_TAG }}" + echo "Git sha : ${{ steps.git-metadata.outputs.GIT_SHA }}" + echo "Image tag : ${{ steps.git-metadata.outputs.GIT_TAG != "none" && steps.git-metadata.outputs.GIT_TAG || steps.git-metadata.outputs.GIT_SHA }}" IMAGE_TAG=${{ inputs.environment }}-${{ steps.git-metadata.outputs.GIT_TAG != "none" && steps.git-metadata.outputs.GIT_TAG || steps.git-metadata.outputs.GIT_SHA }} docker build \