Skip to content

Commit 9f7763c

Browse files
author
Maciej Olko
committed
Build docs also in Latex format
1 parent 64dbfe4 commit 9f7763c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/update-and-build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
strategy:
4545
matrix:
4646
version: [3.8, 3.9]
47+
format: [html, latex]
4748
needs: ['update-translation']
4849
steps:
4950
- uses: actions/setup-python@master
@@ -59,9 +60,9 @@ jobs:
5960
path: Doc/locales/pl/LC_MESSAGES
6061
- run: git pull
6162
working-directory: ./Doc/locales/pl/LC_MESSAGES
62-
- 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 }}
6364
working-directory: ./Doc
6465
- uses: actions/upload-artifact@master
6566
with:
66-
name: build-${{ matrix.version }}
67-
path: Doc/build/html
67+
name: build-${{ matrix.version }}-${{ matrix.format }}
68+
path: Doc/build/${{ matrix.format }}

0 commit comments

Comments
 (0)