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 7af7fa9 commit ca044b5Copy full SHA for ca044b5
.github/workflows/docs_to_pages.yml
@@ -6,15 +6,16 @@ jobs:
6
build-docs:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v3
10
- - uses: actions/setup-python@v3
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
11
with:
12
- python-version: '3.11.3'
+ python-version: '3.11'
13
- name: Install poetry
14
- uses: abatilo/actions-poetry@v2.0.0
+ run: |
15
+ pip install "poetry>=1.8.2,<2"
16
- name: Install docs building dependencies
17
run: |
- python3 -m pip install --upgrade pip
18
+ poetry --version
19
make install-docs
20
- name: Build documentation
21
@@ -26,4 +27,4 @@ jobs:
26
27
uses: JamesIves/github-pages-deploy-action@v4
28
29
folder: doc/build/html
- branch: docs
30
+ branch: gh-pages
0 commit comments