Thanks to visit codestin.com Credit goes to github.com
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 64dbfe4 commit 9f7763cCopy full SHA for 9f7763c
1 file changed
.github/workflows/update-and-build.yml
@@ -44,6 +44,7 @@ jobs:
44
strategy:
45
matrix:
46
version: [3.8, 3.9]
47
+ format: [html, latex]
48
needs: ['update-translation']
49
steps:
50
- uses: actions/setup-python@master
@@ -59,9 +60,9 @@ jobs:
59
60
path: Doc/locales/pl/LC_MESSAGES
61
- run: git pull
62
working-directory: ./Doc/locales/pl/LC_MESSAGES
- - run: make -e SPHINXOPTS="-D language='pl' -D gettext_compact=0 -W --keep-going" html
63
+ - run: make -e SPHINXOPTS="-D language='pl' -D gettext_compact=0 -W --keep-going" ${{ matrix.format }}
64
working-directory: ./Doc
65
- uses: actions/upload-artifact@master
66
with:
- name: build-${{ matrix.version }}
67
- path: Doc/build/html
+ name: build-${{ matrix.version }}-${{ matrix.format }}
68
+ path: Doc/build/${{ matrix.format }}
0 commit comments