Skip to content

Commit ca044b5

Browse files
authored
ci(docs): fix build and deploy issues (#17)
1 parent 7af7fa9 commit ca044b5

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/docs_to_pages.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@ jobs:
66
build-docs:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: actions/setup-python@v3
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-python@v5
1111
with:
12-
python-version: '3.11.3'
12+
python-version: '3.11'
1313
- name: Install poetry
14-
uses: abatilo/[email protected]
14+
run: |
15+
pip install "poetry>=1.8.2,<2"
1516
- name: Install docs building dependencies
1617
run: |
17-
python3 -m pip install --upgrade pip
18+
poetry --version
1819
make install-docs
1920
- name: Build documentation
2021
run: |
@@ -26,4 +27,4 @@ jobs:
2627
uses: JamesIves/github-pages-deploy-action@v4
2728
with:
2829
folder: doc/build/html
29-
branch: docs
30+
branch: gh-pages

0 commit comments

Comments
 (0)