Update sphinx_build_deploy.yml

was missing a line for "name: " under "release" (line 11)
This commit is contained in:
srcarter3 2020-09-02 11:32:35 -06:00 committed by GitHub
parent c115f6d794
commit 804e30ba9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,27 +8,28 @@ on:
- 'docs/**' - 'docs/**'
jobs: jobs:
release: Build release:
runs-on: ubuntu-latest name: Build
steps: runs-on: ubuntu-latest
- uses: actions/checkout@v2 steps:
- name: Setup Python - uses: actions/checkout@v2
uses: actions/setup-python@v2 - name: Setup Python
with: uses: actions/setup-python@v2
python-version: '3.8' with:
python-version: '3.8'
- name: Install dependencies
run: | - name: Install dependencies
sudo apt install pandoc run: |
python -m pip install --upgrade pip sudo apt install pandoc
pip install -r requirements.txxt python -m pip install --upgrade pip
pip install -r requirements.txxt
- name: Build Sphinx documentation
run: | - name: Build Sphinx documentation
make html run: |
make html
- name: Deploy to gh-pages
uses: peaciris/actions-gh-pages@v3 - name: Deploy to gh-pages
with: uses: peaciris/actions-gh-pages@v3
github_token: ${{ secrets.GITHUB_TOKEN }} with:
publish_dir: ./site github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site