We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6297c96 commit f8d8228Copy full SHA for f8d8228
.github/workflows/build-docs.yml
@@ -6,7 +6,7 @@ on:
6
types: [opened, synchronize]
7
8
jobs:
9
- test:
+ build:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
@@ -22,10 +22,10 @@ jobs:
22
pip install -e .
23
- name: Build documentation
24
run: |
25
- python -m sphinx -T -b html -d _build/doctrees -D language=en . _build/html --color -n -W
+ python -m sphinx -T -b html -d docs/_build/doctrees -D language=en docs docs/_build/html -n -W
26
- uses: actions/upload-artifact@v2
27
- name: 🚀 Upload docs as artifact
+ name: Upload docs as artifact
28
with:
29
- name: airflow-website
+ name: docs-html
30
path: './docs/_build/html'
31
- if-no-files-found: error
+ if-no-files-found: error
0 commit comments