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 45a5de3 commit d6635b4Copy full SHA for d6635b4
.github/workflows/deploy-to-gh-pages.yml
@@ -18,20 +18,20 @@ jobs:
18
- name: Install dependencies
19
run: |
20
python -m pip install --upgrade pip
21
- pip install -r docs/docs_requirements.txt
+ pip install -r requirements.txt
22
23
- name: Build sphinx documentation
24
25
make html
26
27
- name: Setup github pages domain
28
29
- touch docs/build/html/.nojekyll
30
- echo "${{ secrets.GH_DOMAIN }}" > docs/build/html/CNAME
+ touch build/html/.nojekyll
+ echo "${{ secrets.GH_DOMAIN }}" > build/html/CNAME
31
32
- name: Deploy
33
uses: JamesIves/github-pages-deploy-action@releases/v3
34
with:
35
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
BRANCH: gh-pages
37
- FOLDER: docs/build/html
+ FOLDER: build/html
0 commit comments