File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,12 @@ jobs:
1212 strategy :
1313 fail-fast : false
1414 matrix :
15- python-version : ["3.15", "3.14", "3.13", "3.12"]
16- include :
17- - python-version : " 3.15"
18- branch : " main"
15+ branch : ["main", "3.14", "3.13", "3.12"]
1916 steps :
2017 - uses : actions/checkout@v5
2118 - uses : actions/setup-python@v6
2219 with :
23- python-version : ${{ matrix.python-version }}
20+ python-version : ${{ matrix.branch == 'main' && '3.15' || matrix.branch }}
2421 allow-prereleases : true
2522 cache : pip
2623 - name : Clone docsbuild scripts
4138 --skip-cache-invalidation
4239 --theme "$(pwd)"
4340 --languages en
44- --branches ${{ matrix.branch || matrix.python-version }}
41+ --branches ${{ matrix.branch }}
4542 ${{ matrix.branch == 'main' && '--select-output no-html' || '' }}
4643 - name : Show logs
4744 if : failure()
5047 - name : Upload
5148 uses : actions/upload-artifact@v5
5249 with :
53- name : doc-html-${{ matrix.python-version }}
50+ name : doc-html-${{ matrix.branch }}
5451 path : www/
5552
5653 translations :
You can’t perform that action at this time.
0 commit comments