Vikramjeet Singh commited on
Commit
6405d92
1 Parent(s): 668c539

Update docker-image.yml

Browse files

Former-commit-id: ff07903b896dd1efc7665175296f0228a22e65ab
Former-commit-id: 89a4eaa6b47feaaacb5ed6a31dcb91307e98a400

Files changed (1) hide show
  1. .github/workflows/docker-image.yml +4 -0
.github/workflows/docker-image.yml CHANGED
@@ -31,6 +31,10 @@ jobs:
31
  restore-keys: |
32
  ${{ runner.os }}-buildx-
33
 
 
 
 
34
  - name: Build and push Docker image
35
  run: |
36
  docker buildx build --file ./Dockerfile --tag ${{ secrets.DOCKER_USERNAME }}/picpilot:$(date +%s) --push --cache-to=type=local,dest=/tmp/.buildx-cache,new=true --cache-from=type=local,src=/tmp/.buildx-cache .
 
 
31
  restore-keys: |
32
  ${{ runner.os }}-buildx-
33
 
34
+ - name: List files in the repository root
35
+ run: ls -alh
36
+
37
  - name: Build and push Docker image
38
  run: |
39
  docker buildx build --file ./Dockerfile --tag ${{ secrets.DOCKER_USERNAME }}/picpilot:$(date +%s) --push --cache-to=type=local,dest=/tmp/.buildx-cache,new=true --cache-from=type=local,src=/tmp/.buildx-cache .
40
+ working-directory: ${{ github.workspace }}