Skip to content

CI config iteration attempt 5 #53

CI config iteration attempt 5

CI config iteration attempt 5 #53

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write # To push a branch
pages: write # To push to a GitHub Pages site
id-token: write # To update the deployment status
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build docs
run: |
python -m pip install numpy==1.24.3 alabaster==1.0.0 Sphinx==8.1.3 matplotlib==3.7.1 sphinxext-opengraph==0.9.1
python -m sphinx docs/source docs/build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: 'docs/build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4