DOC: Add some examples to the operations page #100
Workflow file for this run
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 GitHub pages | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
container: isciences/exactextract-test-env:geos312 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install system dependencies | |
run: | | |
apt-get update | |
apt-get install -y pandoc | |
- name: install python dependencies | |
run: pip3 install --break-system-packages --upgrade -r python/doc/requirements.txt | |
- name: install exactextract | |
run: pip3 install --break-system-packages . | |
- name: download data files | |
run: ci/download_sample_data.sh python/doc | |
- name: configure | |
run: | | |
mkdir build | |
cd build | |
cmake -DBUILD_CLI=NO -DBUILD_PYTHON=YES -DBUILD_TEST=NO .. | |
- name: build | |
run: | | |
cd build | |
cmake --build . --target python_html | |
- name: upload docs | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./build/python/html | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
if: github.repository_owner == 'isciences' && github.ref == 'refs/heads/master' | |
steps: | |
- name: Deploy to GitHub pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |