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

This commit is contained in:
Alex Shevchuk
2025-08-19 02:53:10 +03:00
parent 60f70337c8
commit 4907f8104d

View File

@@ -63,7 +63,7 @@ jobs:
id: git-metadata
run: |
echo "GIT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
echo "GIT_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "none")" >> $GITHUB_OUTPUT
echo "GIT_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo 'none')" >> $GITHUB_OUTPUT
- name: Login to Docker Registry
run: |
@@ -77,6 +77,7 @@ jobs:
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 }}"
- name: Install dependencies
run: |