diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d066f39f..fcc9fa70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,6 +133,10 @@ jobs: name: dist path: backend/src/dist + - name: View files + run: | + pwd && ls -al && tree + - name: Build and push uses: docker/build-push-action@v4 with: @@ -155,15 +159,15 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: download artifact + - name: Download artifact uses: actions/download-artifact@v3 with: name: dist path: webui/dist - - name: zip webui + - name: Zip webui run: | - cd webui && zip -r dist.zip dist + cd webui && ls -al && tree && zip -r dist.zip dist - name: Generate Release if: ${{ github.event_name == 'pull_request' && github.event.pull_request.merged == true }}