Skip to content

Commit f8d8228

Browse files
committed
Build documentation arguments fix
1 parent 6297c96 commit f8d8228

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
types: [opened, synchronize]
77

88
jobs:
9-
test:
9+
build:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
@@ -22,10 +22,10 @@ jobs:
2222
pip install -e .
2323
- name: Build documentation
2424
run: |
25-
python -m sphinx -T -b html -d _build/doctrees -D language=en . _build/html --color -n -W
25+
python -m sphinx -T -b html -d docs/_build/doctrees -D language=en docs docs/_build/html -n -W
2626
- uses: actions/upload-artifact@v2
27-
name: 🚀 Upload docs as artifact
27+
name: Upload docs as artifact
2828
with:
29-
name: airflow-website
29+
name: docs-html
3030
path: './docs/_build/html'
31-
if-no-files-found: error
31+
if-no-files-found: error

0 commit comments

Comments
 (0)