From a58c27afc9aeea6e2dbe461db442fac1244e152d Mon Sep 17 00:00:00 2001 From: Dries Peeters Date: Tue, 26 Aug 2025 11:57:57 +0200 Subject: [PATCH] more prayers --- .github/workflows/docker-publish.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 6ed322c..e9a4d59 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -55,10 +55,18 @@ jobs: type=sha,prefix={{branch}}- type=raw,value=latest,enable={{is_default_branch}} + - name: Debug - List files + run: | + pwd + ls -la + echo "--- Dockerfile content ---" + cat Dockerfile | head -10 + - name: Build and push Docker image uses: docker/build-push-action@v5 with: context: . + file: ./Dockerfile platforms: ${{ matrix.platform }} push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} @@ -103,6 +111,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . + file: ./Dockerfile platforms: linux/amd64 push: true tags: ${{ steps.meta.outputs.tags }}