-
Notifications
You must be signed in to change notification settings - Fork 7
47 lines (39 loc) · 1.27 KB
/
github-pages.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Publish to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install gdal
run: |
sudo add-apt-repository --yes ppa:ubuntugis/ppa
sudo apt-get --quiet update
sudo apt-get install --yes gdal-bin libgdal-dev
sudo apt-get install pandoc
- name: Installing Python packages
run: |
python3 -m pip install --upgrade pip setuptools
# Install NumPy before GDAL
python3 -m pip install numpy
python3 -m pip install gdal==$(gdal-config --version)
python3 -m pip install -r requirements.txt
python3 -m pip install sphinx nbsphinx ipython
python3 -m pip install .
- name: Building documentation
run: sphinx-build docsrc docs/html -b html -d docs/doctree
- name: Adding nojekyll file
run: touch docs/html/.nojekyll
- name: Deploy generated content to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/html