From 733c9df6617ef2fe20e57967f53413d09c6612e4 Mon Sep 17 00:00:00 2001 From: Kirill Nesmeyanov Date: Fri, 20 Feb 2026 19:51:51 +0300 Subject: [PATCH] feat(php): Fix `APP_BUILD_VERSION` tag (part 3) --- .github/workflows/reusable-php-docker-publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-php-docker-publish.yaml b/.github/workflows/reusable-php-docker-publish.yaml index 649d299c..5ef3d801 100644 --- a/.github/workflows/reusable-php-docker-publish.yaml +++ b/.github/workflows/reusable-php-docker-publish.yaml @@ -87,7 +87,7 @@ jobs: IMAGE_NAME=ghcr.io/$REPOSITORY_OWNER/$PACKAGE_NAME:${{ steps.tags.outputs.tagPrefix }}$(git rev-parse --short HEAD)-$(date +%s) IMAGE_NAME_LATEST=ghcr.io/$REPOSITORY_OWNER/$PACKAGE_NAME:${{ steps.tags.outputs.tagSuffix }} - IMAGE_VERSION=${{ steps.tags.outputs.tagPrefix }} + IMAGE_VERSION=${{ steps.tags.outputs.tagPrefix }}$(git rev-parse --short HEAD)-$(date +%s) echo "📦 ${IMAGE_NAME} → ${IMAGE_NAME_LATEST}" @@ -121,7 +121,7 @@ jobs: IMAGE_NAME=ghcr.io/$REPOSITORY_OWNER/$package:${{ steps.tags.outputs.tagPrefix }}$(git rev-parse --short HEAD)-$(date +%s) IMAGE_NAME_LATEST=ghcr.io/$REPOSITORY_OWNER/$package:${{ steps.tags.outputs.tagSuffix }} - IMAGE_VERSION=${{ steps.tags.outputs.tagPrefix }} + IMAGE_VERSION=${{ steps.tags.outputs.tagPrefix }}$(git rev-parse --short HEAD)-$(date +%s) echo "📦 ${IMAGE_NAME} → ${IMAGE_NAME_LATEST}"