From 42e9e8094cf73e65ce11ce0805945c2ef4ed3be4 Mon Sep 17 00:00:00 2001 From: Ian Good Date: Tue, 11 May 2021 07:32:48 -0400 Subject: [PATCH] Drop docs generation from publish workflow --- .github/workflows/python-publish.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 1ffe4fe..4bd6e79 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -25,28 +25,3 @@ jobs: run: | python setup.py sdist bdist_wheel twine upload dist/* - - docs: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - python -m pip install --upgrade -r requirements-dev.txt - python -m pip install --upgrade -r doc/requirements.txt - - name: Build the Sphinx documentation - run: | - make -C doc html - - name: Deploy to GitHub Pages - if: success() - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ github.token }} - publish_dir: ./doc/build/html