-
Notifications
You must be signed in to change notification settings - Fork 19
62 lines (52 loc) · 1.55 KB
/
master.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Build LaTeX document
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
- name: Set up Git repository
uses: actions/checkout@v2
- run: sudo apt-get update
- run: make depext-deb
- name: build VKR
run: make vkr.pdf
- name: build talk
run: make talk.pdf
- name: Upload PDF VKR file
uses: actions/upload-artifact@v3
with:
name: VKR
path: vkr.pdf
- name: Upload PDF talk file
uses: actions/upload-artifact@v3
with:
name: talk
path: talk.pdf
# - name: example-class-relations--svg
# uses: dante-ev/latex-action@latest
# with:
# root_file: vkr.tex
# compiler: xelatex
# args: -interaction=nonstopmode -shell-escape
# name: Build LaTeX document
# on: [push]
# jobs:
# build_latex:
# runs-on: ubuntu-latest
# steps:
# - name: Set up Git repository
# uses: actions/checkout@v3
# - name: Compile LaTeX document
# uses: xu-cheng/latex-action@v2
# with:
# root_file: vkr.tex
# latexmk_use_xelatex: true
# latexmk_shell_escape: true
# extra_system_packages: texlive-lang-cyrillic texlive-xetex texlive-bibtex-extra texlive-plain-generic texlive-fonts-recommended
# - name: Upload PDF file
# uses: actions/upload-artifact@v3
# with:
# name: PDF
# path: main.pdf