Updated location of analysis params when re-applying filters in diff exp #104
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: 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 }} |