Skip to content

Commit 6adaf73

Browse files
committed
feat: now pdf is compiling in actions
1 parent 41df006 commit 6adaf73

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

.github/workflows/latex.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build LaTeX PDF
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build-pdf:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
16+
- name: Compile LaTeX
17+
uses: xu-cheng/latex-action@v4
18+
with:
19+
root_file: core-design-document.tex
20+
texlive_version: 2025
21+
os: debian
22+
latexmk_use_lualatex: true
23+
24+
- name: Upload PDF artifact
25+
uses: actions/upload-artifact@v4
26+
with:
27+
name: core-design-document-pdf
28+
path: core-design-document.pdf

configuration/macroses/floats.sty

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
% Стандаратная библиотека externalize больше не поддерживается и там нет нужных
1111
% вещей, например поддержки относительных путей
1212
\RequirePackage{memoize}
13-
\mmzset{memo dir=build/}
1413

1514

1615
\input{macroses/utils/floats/images}

0 commit comments

Comments
 (0)