Skip to content

Commit

Permalink
Fix documentation path in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-rijsketic committed Jun 7, 2024
1 parent daa0677 commit b50870e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'

Expand All @@ -25,12 +25,12 @@ jobs:
- name: Build documentation
run: |
cd path/to/your/documentation
cd unravel/docs
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./path/to/your/documentation/_build/html
publish_dir: ./unravel/docs/_build/html

0 comments on commit b50870e

Please sign in to comment.