Skip to content

Commit

Permalink
✨ add workflow to build and save website
Browse files Browse the repository at this point in the history
  • Loading branch information
enryH committed Sep 30, 2024
1 parent e43c3cc commit f4a672c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build_website.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Build website and save it on gh-pages branch
name: build-and-save-website

# Only run this when the master branch is ch
on:
push:
branches:
- main
workflow_dispatch:

# This job installs dependencies, builds the website and pushes it to `gh-pages`
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Build the site
run: |
sphinx-build -nW --keep-going -b html . _build
# If we've pushed to main, push the book's HTML to github-pages
- if: ${{ github.ref == 'refs/heads/main' }}
name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build
# cname: website.com

0 comments on commit f4a672c

Please sign in to comment.