forked from cds-astro/ipyaladin
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (30 loc) · 872 Bytes
/
Copy pathpublish-docs.yml
File metadata and controls
31 lines (30 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: deploy-documentation
on:
push:
tags:
- v*
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy-doc:
runs-on: ubuntu-latest
steps:
- name: "Checkout branch ${{ github.head_ref }}"
uses: actions/checkout@v4
- name: "Set up Python on Ubuntu"
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: "Build doc"
run: |
# Build the doc
python3 -m pip install --upgrade pip setuptools
pip install .[docs,recommended,notebooks]
sudo apt-get install pandoc
cd ./docs
make html
- name: "Publish doc on github pages (commit on branch gh-pages)"
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/_build/html/