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 \