Skip to content

Commit

Permalink
Merge pull request #171 from slimta/workflows
Browse files Browse the repository at this point in the history
Drop docs generation from publish workflow
  • Loading branch information
icgood authored May 11, 2021
2 parents 9d6ddbb + 42e9e80 commit a64e1d8
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a64e1d8

Please sign in to comment.