Implement 17 segment aha markers #118
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Github Pages | |
on: [push] | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
container: | |
image: ghcr.io/scientificcomputing/fenics-gmsh:2023-08-16 | |
env: | |
# Directory that will be published on github pages | |
PUBLISH_DIR: ./docs/_build/html | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: python3 -m pip install -e ".[docs]" | |
- name: Build docs | |
run: jupyter book build -W docs | |
- name: Deploy | |
if: github.ref == 'refs/heads/main' | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ${{ env.PUBLISH_DIR }} |