Skip to content

Commit

Permalink
add GitHub action to build the Cookbook files and deploy them to the …
Browse files Browse the repository at this point in the history
…gh-pages branch when a push to main is made
  • Loading branch information
stuchalk committed Dec 13, 2023
1 parent 577c808 commit b3cff53
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: deploy-book

# Only run this when the master branch changes
on:
push:
branches:
- main

# This job installs dependencies, builds the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

# Install dependencies
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install dependencies
run: |
pip install -r requirements.txt
# Build the book
- name: Build the book
run: |
jupyter-book build book
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: book/_build/html

0 comments on commit b3cff53

Please sign in to comment.