33
All checks were successful
Deploy Production / Deploy to Staging (push) Has been skipped

This commit is contained in:
Alex Shevchuk
2025-08-19 02:39:44 +03:00
parent 6757a7a41d
commit 74cd4463bf

View File

@@ -87,6 +87,10 @@ jobs:
IMAGE_NAME: molvaapp/test_deploy IMAGE_NAME: molvaapp/test_deploy
CONFIG_FILE: .build/config/staging.yaml CONFIG_FILE: .build/config/staging.yaml
run: | 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 }} 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 \ docker build \