mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 14:57:56 -05:00
Update sphinx_build_deploy.yml
was missing a line for "name: " under "release" (line 11)
This commit is contained in:
parent
c115f6d794
commit
804e30ba9e
1 changed files with 25 additions and 24 deletions
43
.github/workflows/sphinx_build_deploy.yml
vendored
43
.github/workflows/sphinx_build_deploy.yml
vendored
|
@ -8,27 +8,28 @@ on:
|
|||
- 'docs/**'
|
||||
|
||||
jobs:
|
||||
release: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.8'
|
||||
release:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.8'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt install pandoc
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txxt
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt install pandoc
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txxt
|
||||
|
||||
- name: Build Sphinx documentation
|
||||
run: |
|
||||
make html
|
||||
- name: Build Sphinx documentation
|
||||
run: |
|
||||
make html
|
||||
|
||||
- name: Deploy to gh-pages
|
||||
uses: peaciris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./site
|
||||
- name: Deploy to gh-pages
|
||||
uses: peaciris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./site
|
||||
|
|
Loading…
Add table
Reference in a new issue