From b50870e63c6beb75f5a7508a927ffc2d8df8ca8e Mon Sep 17 00:00:00 2001 From: daniel-rijsketic Date: Thu, 6 Jun 2024 18:44:05 -0600 Subject: [PATCH] Fix documentation path in GitHub Actions workflow --- .github/workflows/deploy_docs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 0586e644..49d862d9 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -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' @@ -25,7 +25,7 @@ jobs: - name: Build documentation run: | - cd path/to/your/documentation + cd unravel/docs make html - name: Deploy to GitHub Pages @@ -33,4 +33,4 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_branch: gh-pages - publish_dir: ./path/to/your/documentation/_build/html + publish_dir: ./unravel/docs/_build/html