Merge pull request #454 from jdebacker/up_py #24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Deploy Jupyter Book documentation | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build-and-deploy: | |
| if: github.repository == 'PSLmodels/taxdata' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Miniconda | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| activate-environment: taxdata-dev | |
| environment-file: environment.yml | |
| python-version: 3.13 | |
| auto-activate-base: false | |
| - name: Build # Build Jupyter Book | |
| shell: bash -l {0} | |
| run: | | |
| pip install jupyter-book | |
| pip install sphinxcontrib-bibtex==1.0.0 | |
| cd docs | |
| jb build ./book | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@releases/v3 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BRANCH: gh-pages # The branch the action should deploy to. | |
| FOLDER: docs/book/_build/html # The folder the action should deploy. |