Skip to content

Feature/disk-usage command add irods archive/team298 information #241

Feature/disk-usage command add irods archive/team298 information

Feature/disk-usage command add irods archive/team298 information #241

Workflow file for this run

name: deploy-docs
# on:
# push:
# branches: [main]
# tags: ["v*"]
on:
push:
branches: [dev]
pull_request:
branches: [main, dev]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./envs/dev/requirements.txt
pip install -e .
- name: Sphinx Build
working-directory: ./sphinx
run: |
make html
touch _build/html/.nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: sphinx/_build/html
target-folder: docs
clean: true