Skip to content

Commit

Permalink
Merge pull request #2 from jdebacker/pr-2420
Browse files Browse the repository at this point in the history
Add github action to build JB
  • Loading branch information
MaxGhenis authored Jul 22, 2020
2 parents 9f42d36 + fef642c commit cc38cc0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/deploy_jupyterbook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build and Deploy Jupyter Book
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false

- name: Setup Miniconda
uses: goanpeca/setup-miniconda@v1
with:
activate-environment: taxcalc-dev
environment-file: environment.yml
python-version: 3.7
auto-activate-base: false

- name: Build # Build Jupyter Book
shell: bash -l {0}
run: |
pip install jupyter-book
conda install -c pslmodels behresp
cd docs
jb build .
- 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: jb_git_tutorial/_build/html # The folder the action should deploy.

0 comments on commit cc38cc0

Please sign in to comment.