Skip to content

190 readme and dev deps improvements #392

190 readme and dev deps improvements

190 readme and dev deps improvements #392

Workflow file for this run

---
name: Build Docs
# We also build for PR's since this also tests whether all notebooks run properly
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
# Build docs on Linux
Docs:
name: build docs
runs-on: ubuntu-latest
env:
DOC_VERSION: dev
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Setup environment
uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.11"
channels: conda-forge
channel-priority: strict
- name: Install hydromt-delft3dfm
run: |
conda install flit
conda install pandoc # does not work via pip
flit install
- name: list env contents
run: |
pip list
hydromt --models
- name: Build docs
run: |
pushd docs
make html
popd
- name: Set doc version
run: echo "DOC_VERSION=$(python -c 'from hydromt_delft3dfm import __version__ as v; print("dev" if "dev" in v else "v"+v.replace(".dev",""))')"
>> $GITHUB_ENV
- name: Upload to GitHub Pages
if: ${{ github.event_name != 'pull_request'}}
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
exclude_assets: '.buildinfo,_sources/*,_examples/*.ipynb'
destination_dir: ./${{ env.DOC_VERSION }}
keep_files: false
full_commit_message: Deploy ${{ env.DOC_VERSION }} to GitHub Pages