homology of saddle connection #1474
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: Build Documentation | |
on: | |
push: { branches: [ "master" ] } | |
pull_request: { branches: [ "master" ] } | |
concurrency: | |
group: doc-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-manual: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: { pixi-version: v0.28.2 } | |
- name: build documentation | |
run: | | |
pixi run doc | |
# Do not run Jekyll to create GitHub Pages but take HTML files as they are. | |
touch doc/_build/html/.nojekyll | |
- name: provide documentation as artifact for netlify workflow | |
uses: actions/upload-artifact@v3 | |
with: | |
name: doc | |
path: doc/_build/html | |
- uses: JamesIves/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: doc/_build/html | |
TARGET_FOLDER: docs | |
if: ${{ github.event_name == 'push' }} | |
- uses: flatsurf/actions/show-logs@main | |
if: ${{ always() }} | |
env: | |
MAKEFLAGS: -j4 | |
SAGE_NUM_THREADS: 4 |