File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 66 - main
77 workflow_dispatch :
88
9- # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
109permissions :
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.
1714concurrency :
1815 group : " pages"
1916 cancel-in-progress : false
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
You can’t perform that action at this time.
0 commit comments