From bf07c49d31a3ae47311789f6087ebad29c4f528d Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 22 Nov 2024 16:42:06 +1100 Subject: [PATCH] Fixes for incorrect build path --- .github/workflows/build-image-debian.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-image-debian.yaml b/.github/workflows/build-image-debian.yaml index ab8cd4f..f87dade 100644 --- a/.github/workflows/build-image-debian.yaml +++ b/.github/workflows/build-image-debian.yaml @@ -17,6 +17,14 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Debug - Show current directory and files + run: | + echo "Current directory: $(pwd)" + echo "Files in current directory:" + ls -la + echo "Files in debian directory (if exists):" + ls -la debian/ || echo "debian directory not found" + - name: Set up QEMU uses: docker/setup-qemu-action@v3 with: @@ -39,7 +47,7 @@ jobs: uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} - context: . + context: debian/ file: Dockerfile push: false build-args: INVOICENINJA_VERSION=5-develop