Skip to content

Reverting back to storage of raw data in a separate store #105

Reverting back to storage of raw data in a separate store

Reverting back to storage of raw data in a separate store #105

Workflow file for this run

name: Build and deploy docs
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Installing package and dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install sphinx
pip install myst_parser
pip install numba==0.59.0
- name: Building HTML docs
run: make -C docs html
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: docs/
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}