Skip to content

Merge pull request #199 from matplotlib/remove-cron-schedule #1746

Merge pull request #199 from matplotlib/remove-cron-schedule

Merge pull request #199 from matplotlib/remove-cron-schedule #1746

Workflow file for this run

name: GitHub Pages
permissions:
contents: read
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install documentation requirements
run: |
pip install -r docs/requirements.txt
- name: Make docs builds
run: |
make -C docs html O="-t release"
- name: Deploy
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html