Skip to content

Commit e0fa172

Browse files
committed
Add temp logging to build
1 parent 4e8a31b commit e0fa172

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ jobs:
2121

2222
- name: Install Dependencies
2323
run: |
24+
sudo apt-get install tree
2425
python -m pip install --upgrade pip
2526
pip install sphinx sphinx_rtd_theme
27+
pip install -r docs/requirements.txt
2628
# Install any other dependencies here
2729
2830
- name: Install Package
@@ -33,11 +35,13 @@ jobs:
3335
run: |
3436
cd docs
3537
make html
38+
ls _build/html
39+
tree _build/html
3640
3741
- name: Deploy to GitHub Pages
3842
uses: peaceiris/actions-gh-pages@v3
3943
with:
4044
user_name: 'tyeth'
4145
user_email: '[email protected]'
4246
github_token: ${{ secrets.GITHUB_TOKEN }}
43-
publish_dir: ./docs/_build/html
47+
publish_dir: docs/_build/html

0 commit comments

Comments
 (0)