Skip to content

Commit d6635b4

Browse files
authored
fix: fix requirements
1 parent 45a5de3 commit d6635b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy-to-gh-pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@ jobs:
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
21-
pip install -r docs/docs_requirements.txt
21+
pip install -r requirements.txt
2222
2323
- name: Build sphinx documentation
2424
run: |
2525
make html
2626
2727
- name: Setup github pages domain
2828
run: |
29-
touch docs/build/html/.nojekyll
30-
echo "${{ secrets.GH_DOMAIN }}" > docs/build/html/CNAME
29+
touch build/html/.nojekyll
30+
echo "${{ secrets.GH_DOMAIN }}" > build/html/CNAME
3131
3232
- name: Deploy
3333
uses: JamesIves/github-pages-deploy-action@releases/v3
3434
with:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
BRANCH: gh-pages
37-
FOLDER: docs/build/html
37+
FOLDER: build/html

0 commit comments

Comments
 (0)