Skip to content

Commit da63b67

Browse files
authored
Update build_docs.yml
1 parent 9011c74 commit da63b67

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/build_docs.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ jobs:
1313
docs:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
17-
- uses: actions/setup-python@v5
18-
- name: Install dependencies
16+
- uses: actions/checkout@v3
17+
- name: Set up Python 3.10
18+
- uses: actions/setup-python@v3
19+
- name: Install python dependencies
1920
run: |
21+
python -m pip install --upgrade pip
22+
python -m pip install --upgrade -r requirements.txt
2023
pip install sphinx sphinx_rtd_theme myst_parser
2124
- name: Build Sphinx for GitHub Pages
2225
run: |
@@ -36,4 +39,4 @@ jobs:
3639
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
3740
git add ./.
3841
git commit -m "Autobuild latest version"
39-
git push
42+
git push

0 commit comments

Comments
 (0)