Skip to content

Merge pull request #229 from UBC-DSCI/main #43

Merge pull request #229 from UBC-DSCI/main

Merge pull request #229 from UBC-DSCI/main #43

Workflow file for this run

name: Rebuild and deploy book to gh-pages branch
on:
push:
branches:
- production
paths:
- source/**
jobs:
deploy-book:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: 'production'
- name: Build the book
run: |
./build_html.sh
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: source/_build/html
force_orphan: true
cname: python.datasciencebook.ca