From bc4b770f07ef538049d37c7f1ea40596297e173a Mon Sep 17 00:00:00 2001 From: DDSRem <1448139087@qq.com> Date: Fri, 16 Jun 2023 16:51:14 +0800 Subject: [PATCH] feat: ci add file view --- .github/workflows/build.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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 }}