Skip to content

Merge pull request #237 from anth-volk/fix/conditional-imports #45

Merge pull request #237 from anth-volk/fix/conditional-imports

Merge pull request #237 from anth-volk/fix/conditional-imports #45

name: Build and Deploy Jupyter Book
on:
push:
branches:
- master
jobs:
build-and-deploy:
if: github.repository == 'PSLmodels/microdf'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: microdf
environment-file: environment.yml
python-version: 3.9
auto-activate-base: false
- name: Build
shell: bash -l {0}
run: |
pip install -e .
jb build docs/.
- 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/_build/html # The folder the action should deploy.