Skip to content

Release date 2026-04-20:14:12 AEADataEditor/replication-template-deve… #4

Release date 2026-04-20:14:12 AEADataEditor/replication-template-deve…

Release date 2026-04-20:14:12 AEADataEditor/replication-template-deve… #4

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
pip install -r docs/requirements.txt
- name: Build MyST documentation
run: |
cd docs && myst build --html
env:
BASE_URL: https://aeadataeditor.github.io/replication-template
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/_build/html
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4