From 00b2887900b2cddea7ded54cdef98c9d58634ad9 Mon Sep 17 00:00:00 2001 From: Tuan Pham Date: Tue, 14 Mar 2023 00:22:55 +0700 Subject: [PATCH] fix: missing registry, image name when push --- .github/workflows/build-docker-php.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-docker-php.yml b/.github/workflows/build-docker-php.yml index aed150e..1532457 100644 --- a/.github/workflows/build-docker-php.yml +++ b/.github/workflows/build-docker-php.yml @@ -31,11 +31,13 @@ jobs: uses: docker/metadata-action@v4 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=raw,value=8.2-ci - name: Build and push Docker image uses: docker/build-push-action@v4 with: context: ./php/8.2/ci push: true - tags: 8.2-ci - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}