Skip to content

Add daily data manifest to repo #85

Add daily data manifest to repo

Add daily data manifest to repo #85

Workflow file for this run

name: "Sphinx: Render docs"
on:
push:
branches: ["main", "master"]
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install pandoc
run: sudo apt-get install -y pandoc
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pandas numpy pyyaml click requests httpx scipy matplotlib xarray tqdm openpyxl lxml
pip install -r docsrc/requirements.txt
pip install --no-deps -e .
- name: Build HTML
run: |
cd docsrc/
make clean
make html
- name: Run ghp-import
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config http.postBuffer 157286400
ghp-import -n -p -f ./docs/html