Skip to content

Merge pull request #72 from CCPBioSim/jimboid-patch-1 #66

Merge pull request #72 from CCPBioSim/jimboid-patch-1

Merge pull request #72 from CCPBioSim/jimboid-patch-1 #66

Workflow file for this run

name: pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
publish:
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v6.0.0
- name: setup python
uses: actions/setup-python@v6.1.0
with:
python-version: 3.13
- name: Install dependencies
run: |
pip install sphinx sphinx_rtd_theme sphinxcontrib-contentui sphinxcontrib-details-directive sphinx_copybutton furo myst_parser
- name: Sphinx build
run: |
cd pages
make
cp ../workshop.json build/html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4.0.0
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: pages/build/html
force_orphan: true