Skip to content

Fix failing CodeCov report #295

Fix failing CodeCov report

Fix failing CodeCov report #295

Workflow file for this run

name: deploy-book
# Only run this when the master branch changes
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main
# If your git repository has the Jupyter Book within some-subfolder next to
# unrelated files, you can make this run only if a file within that specific
# folder has been modified.
#
#paths:
#- book/
# This job installs dependencies, builds the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
permissions:
pages: write
# https://github.com/JamesIves/github-pages-deploy-action/issues/1110
contents: write
steps:
- uses: actions/checkout@v4
# Install dependencies
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install -r book/content/requirements.txt
# Install selector
- name: Install package
run: |
pip install -e .
# Build the book
- name: Build the book
run: |
jupyter-book build ./book/content
# Push the book's HTML to github-pages
# inspired by https://github.com/orgs/community/discussions/26724
# only push to gh-pages if the main branch has been updated
- name: GitHub Pages Action
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book/content/_build/html
publish_branch: gh-pages
cname: selector.qcdevs.org