Skip to content

Commit

Permalink
docs: -update workflow WD
Browse files Browse the repository at this point in the history
  • Loading branch information
amirrezaDev1378 committed Nov 14, 2024
1 parent 95d925e commit accf896
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit accf896

Please sign in to comment.