Skip to content

Commit 4f27325

Browse files
committed
Add debug output to find correct public directory location
1 parent 9546f9f commit 4f27325

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,22 @@ jobs:
4444
- name: Build website
4545
run: yarn build
4646

47+
- name: List build output
48+
run: |
49+
echo "=== Root directory ==="
50+
ls -la
51+
echo "=== Example directory ==="
52+
ls -la example/
53+
echo "=== Looking for public directories ==="
54+
find . -name "public" -type d
55+
4756
- name: Setup Pages
4857
uses: actions/configure-pages@v5
4958

5059
- name: Upload artifact
5160
uses: actions/upload-pages-artifact@v3
5261
with:
53-
path: './public'
62+
path: './example/public'
5463

5564
- name: Deploy to GitHub Pages
5665
id: deployment

0 commit comments

Comments
 (0)