typo - Links point directly to the pool of CIGAR strings #17
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: docs | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Permissions for GitHub pages deployment. | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Set up and run Sphinx. | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- run: pip install Sphinx | |
- name: "Sphinx problem matcher" | |
uses: sphinx-doc/github-problem-matcher@master | |
- name: Build mygfa docs | |
run: | | |
cd mygfa/docs | |
make html | |
# Create site. | |
- name: Assemble site directory | |
run: | | |
mkdir -p site | |
cp -r mygfa/docs/_build/html site/mygfa | |
- name: Pages artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "site" | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deploy.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
if: ${{github.event_name=='push' && github.ref=='refs/heads/main' && github.repository_owner=='cucapra'}} | |
steps: | |
- id: deploy | |
uses: actions/deploy-pages@v4 |