Skip to content

Commit 439f7b5

Browse files
committed
try to fix deploy
1 parent 5d75fb5 commit 439f7b5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,11 @@ on:
66
- main
77
workflow_dispatch:
88

9-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
109
permissions:
1110
contents: read
1211
pages: write
1312
id-token: write
1413

15-
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
16-
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
1714
concurrency:
1815
group: "pages"
1916
cancel-in-progress: false
@@ -36,6 +33,15 @@ jobs:
3633
- name: Build MyST site
3734
run: myst build --html
3835

36+
- name: List build output
37+
run: |
38+
echo "Contents of _build:"
39+
ls -la _build/ || echo "_build directory not found"
40+
echo "Contents of _build/html:"
41+
ls -la _build/html/ || echo "_build/html directory not found"
42+
echo "Looking for index.html:"
43+
find _build -name "index.html" -type f || echo "No index.html found"
44+
3945
- name: Copy CNAME to build directory
4046
run: cp CNAME _build/html/
4147

0 commit comments

Comments
 (0)