Updating changelog and version number #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install system libraries | |
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 dependencies | |
run: | | |
python3 -m pip install --upgrade pip setuptools wheel | |
# Install NumPy before GDAL | |
python3 -m pip install numpy | |
# Install GDAL | |
export CPLUS_INCLUDE_PATH=/usr/include/gdal | |
export C_INCLUDE_PATH=/usr/include/gdal | |
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 -e . | |
- 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/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: docs/html |