diff --git a/.github/workflows/docker-img-push.yaml b/.github/workflows/docker-img-push.yaml index 465ee8c..5c1f3d3 100644 --- a/.github/workflows/docker-img-push.yaml +++ b/.github/workflows/docker-img-push.yaml @@ -39,7 +39,7 @@ jobs: uses: docker/build-push-action@v6 with: context: Dockerfiles - file: ${{ matrix.dockerfile }} + file: Dockerfiles/${{ matrix.dockerfile }} push: false tags: ghcr.io/${{ env.IMG_REPO_NAME }}:${{ env.TAG_NAME }} - name: Build and push Docker image @@ -47,7 +47,7 @@ jobs: uses: docker/build-push-action@v6 with: context: Dockerfiles - file: ${{ matrix.dockerfile }} + file: Dockerfiles/${{ matrix.dockerfile }} push: true tags: ghcr.io/${{ env.IMG_REPO_NAME }}:${{ env.TAG_NAME }} cache-from: type=registry,ref=ghcr.io/${{ env.IMG_REPO_NAME }}:${{ env.TAG_NAME }}