Расширение теории #27
Workflow file for this run
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-get install -y cm-super # Fonts. | |
sudo apt -y install make texlive latexmk texlive-lang-cyrillic texlive-science texlive-latex-extra ttf-mscorefonts-installer texlive-bibtex-extra biber | |
sudo fc-cache -fv | |
- name: Build PDF | |
run: | | |
latexmk -pdf -outdir=out ./main.tex | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: main.pdf | |
path: out/main.pdf | |