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
49
.github/workflows/sphinx_build_deploy.yml
vendored
49
.github/workflows/sphinx_build_deploy.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue