Skip to content

Commit

Permalink
ci: add dist directory listing for debugging in deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rocktimsaikia committed Jul 28, 2024
1 parent 09f977c commit e6c7fee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Build project
run: pnpm build

- name: List dist directory files (For debugging)
run: ls -la ./dist

- name: Upload production-ready build files
uses: actions/upload-artifact@v4
with:
Expand All @@ -49,6 +52,9 @@ jobs:
name: production-files
path: ./dist

- name: List dist directory files (For debugging)
run: ls -la ./dist

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
Expand Down

0 comments on commit e6c7fee

Please sign in to comment.