Skip to content

Commit

Permalink
Maybe this will work
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryAsa committed Sep 9, 2023
1 parent c13d25b commit df4a6bb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,20 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build Updated Documentation
run: |
sphinx-build -b html docs/source/ docs/build/html
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v2
with:
# Upload entire repository
path: './docs/build/html'
Expand Down

0 comments on commit df4a6bb

Please sign in to comment.