From accf89644763bbf5b105379a883d2313c5fa2313 Mon Sep 17 00:00:00 2001 From: Amirreza Date: Thu, 14 Nov 2024 09:00:48 +0330 Subject: [PATCH] docs: -update workflow WD --- .github/workflows/deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6dc21e1..f11c5aa 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -34,7 +34,10 @@ jobs: run: bun install - name: Build website - run: bun run build + run: | + bun run build + ls -la # Debug: List all files + ls -la build || ls -la ./dist # Debug: Check both possible build directories - name: Upload artifact uses: actions/upload-pages-artifact@v3 @@ -45,7 +48,7 @@ jobs: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} - needs: /build + needs: build runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' steps: