Skip to content

Commit

Permalink
Add temp logging to build
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeth committed Nov 25, 2023
1 parent 4e8a31b commit e0fa172
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ jobs:

- name: Install Dependencies
run: |
sudo apt-get install tree
python -m pip install --upgrade pip
pip install sphinx sphinx_rtd_theme
pip install -r docs/requirements.txt
# Install any other dependencies here
- name: Install Package
Expand All @@ -33,11 +35,13 @@ jobs:
run: |
cd docs
make html
ls _build/html
tree _build/html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
user_name: 'tyeth'
user_email: '[email protected]'
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
publish_dir: docs/_build/html

0 comments on commit e0fa172

Please sign in to comment.