From 31d194eb486f001f11a98d178aa527b2beeeaa6a Mon Sep 17 00:00:00 2001 From: Alex Kerney Date: Wed, 11 Oct 2023 21:39:27 -0400 Subject: [PATCH] Ripped docs out for now --- .github/workflows/deploy-docs.yml | 53 ------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .github/workflows/deploy-docs.yml diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml deleted file mode 100644 index 459fc87..0000000 --- a/.github/workflows/deploy-docs.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: Documentation - -on: - pull_request: - push: - branches: - - main - release: - types: - - published - -jobs: - build-docs: - runs-on: ubuntu-latest - - steps: - - name: checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Setup Micromamba - uses: mamba-org/setup-micromamba@v1 - with: - environment-name: TEST - init-shell: bash - create-args: >- - python=3 pip - --file requirements.txt - --file requirements-dev.txt - --channel conda-forge - - - name: Install package - shell: bash -l {0} - run: | - python -m pip install -e . --no-deps --force-reinstall - - - name: Build documentation - shell: bash -l {0} - run: | - set -e - jupyter nbconvert --to notebook --execute notebooks/tutorial.ipynb --output=tutorial-output.ipynb - mv notebooks/*output.ipynb docs/source/ - pushd docs - make clean html linkcheck - popd - - - name: Deploy - if: success() && github.event_name == 'release' - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: docs/build/html