Skip to content

Merge pull request #52 from jdebacker/update_depends #1

Merge pull request #52 from jdebacker/update_depends

Merge pull request #52 from jdebacker/update_depends #1

Workflow file for this run

name: Build and Deploy Sphinx docs
on:
push:
branches:
- master
jobs:
build-and-deploy:
if: github.repository == 'PSLmodels/CGE'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
activate-environment: cge_env
environment-file: environment.yml
python-version: "3.11"
auto-activate-base: false
- name: Build # Build Jupyter Book
shell: bash -l {0}
run: |
pip install -e .
python -m ipykernel install --user --name=cge_env
jb build ./docs/book
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
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.