From 5cab3a44224efa718cf8b9199d91526a64cf2039 Mon Sep 17 00:00:00 2001 From: kmaxii Date: Wed, 10 Jul 2024 20:42:44 +0200 Subject: [PATCH] Added debug to list files --- .github/workflows/cicd.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 36eda20..ebe0932 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -23,6 +23,14 @@ jobs: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + - name: Debug - List files in context + run: | + ls -la + - name: Debug - List files in temporary directory + run: | + ls -la "$temp_dir" + + - name: Build and push Docker image id: build uses: docker/build-push-action@v4 @@ -30,8 +38,8 @@ jobs: context: . file: ./Dockerfile platforms: linux/arm64 - load: true push: true + load: true tags: ${{ secrets.DOCKER_HUB_USERNAME }}/vow-website:latest - name: Copy docker-compose.yml to Oracle Cloud