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 9011c74 commit da63b67Copy full SHA for da63b67
.github/workflows/build_docs.yml
@@ -13,10 +13,13 @@ jobs:
13
docs:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: actions/checkout@v4
17
- - uses: actions/setup-python@v5
18
- - name: Install dependencies
+ - uses: actions/checkout@v3
+ - name: Set up Python 3.10
+ - uses: actions/setup-python@v3
19
+ - name: Install python dependencies
20
run: |
21
+ python -m pip install --upgrade pip
22
+ python -m pip install --upgrade -r requirements.txt
23
pip install sphinx sphinx_rtd_theme myst_parser
24
- name: Build Sphinx for GitHub Pages
25
@@ -36,4 +39,4 @@ jobs:
36
39
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
37
40
git add ./.
38
41
git commit -m "Autobuild latest version"
- git push
42
+ git push
0 commit comments