Create PDF #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create PDF | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install texlive | |
run: | | |
sudo sudo apt update | |
sudo apt -y install make texlive latexmk texlive-lang-cyrillic texlive-science texlive-latex-extra ttf-mscorefonts-installer | |
sudo fc-cache -fv | |
- name: Build PDF | |
run: | | |
cd man-source | |
latexmk -pdf -outdir=out ./main.tex | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: main.pdf | |
path: out/main.pdf | |