Skip to content

Build and Deploy to Pages #1249

Build and Deploy to Pages

Build and Deploy to Pages #1249

# Simple workflow for deploying static content to GitHub Pages
# adapted from https://github.com/actions/starter-workflows/blob/main/pages/static.yml
name: Build and Deploy to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: [master]
# Every day at 2:47am (in case Patreon list changes)
schedule:
- cron: "47 2 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4.1.7
- name: apt installs
run: sudo apt update && sudo apt install -y texlive-latex-extra texlive-lang-cyrillic ghostscript libenchant-2-dev
- uses: actions/setup-python@v6.2.0
with:
python-version: '3.12'
- name: pip installs
run: pip install -r requirements.txt
- name: Build English
run: make html
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Check for spelling errors
id: check_files
uses: andstor/file-existence-action@v3
with:
files: "_spelling/content/*.spelling"
- name: Fail if spelling errors
if: steps.check_files.outputs.files_exists == 'true'
run: cat _spelling/content/* && exit 1
- name: Zip just English version for Release
uses: montudor/action-zip@v1
with:
args: zip -qq -r html.zip ./_build
- name: Build Dutch
run: make html-nl
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build French
run: make html-fr
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build Ukraine
run: make html-ukraine
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build Chinese
run: make html-zh
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build Spanish
run: make html-es
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build Japanese
run: make html-ja
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
# Build a self-hosted JupyterLite environment into _build/jupyterlite so the
# interactive "run this code" links in the book point at our own deployment
# rather than a third-party demo site. Done last so its pip installs can't
# disturb the Sphinx builds above.
- name: Build JupyterLite
run: |
pip install -r requirements-jupyterlite.txt
jupyter lite build --contents jupyterlite --output-dir _build/jupyterlite
python jupyterlite/inject_branding.py _build/jupyterlite
- name: Upload artifact
uses: actions/upload-pages-artifact@v3.0.1
with:
path: './_build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5.0.0
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" && echo "::set-output name=day::$(date +'%d')"
- name: Create Release with zip file only on first day of each month
uses: softprops/action-gh-release@v1
if: ${{ steps.date.outputs.day == '01' }}
with:
files: html.zip
tag_name: ${{ steps.date.outputs.date }}