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 fcfbaca commit e651b4fCopy full SHA for e651b4f
1 file changed
.github/workflows/update-and-build.yml
@@ -66,3 +66,19 @@ jobs:
66
with:
67
name: build-${{ matrix.version }}-${{ matrix.format }}
68
path: Doc/build/${{ matrix.format }}
69
+ output-pdf:
70
+ runs-on: ubuntu-latest
71
+ strategy:
72
+ matrix:
73
+ version: [3.8, 3.9]
74
+ needs: ['build-translation']
75
+ steps:
76
+ - uses: actions/download-artifact@master
77
+ with:
78
+ name: build-${{ matrix.version }}-latex
79
+ - run: sudo apt-get install -y latexmk texlive-xetex fonts-freefont-otf xindy
80
+ - run: make
81
+ - uses: actions/upload-artifact@master
82
83
+ name: build-${{ matrix.version }}-pdf
84
+ path: .
0 commit comments