File tree Expand file tree Collapse file tree 3 files changed +39
-17
lines changed
Expand file tree Collapse file tree 3 files changed +39
-17
lines changed Original file line number Diff line number Diff line change 1+ name : LaTeX PDF Build
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+ branches :
9+ - main
10+
11+ jobs :
12+ build :
13+ runs-on : ubuntu-latest
14+
15+ steps :
16+ # Step 1: Checkout the repository
17+ - name : Checkout repository
18+ uses : actions/checkout@v2
19+
20+ # Step 2: Set up TeX Live (LaTeX environment)
21+ - name : Set up TeX Live
22+ uses : dante-ev/action-texlive@v1
23+ with :
24+ texlive_version : ' 2020'
25+
26+ # Step 3: Install make (required to run your Makefile)
27+ - name : Install make
28+ run : sudo apt-get install make
29+
30+ # Step 4: Build the PDF using the Makefile
31+ - name : Build PDF using Makefile
32+ run : make
33+
34+ # Step 5: Upload the generated PDF as an artifact
35+ - name : Upload PDF artifact
36+ uses : actions/upload-artifact@v2
37+ with :
38+ name : lammps-tutorials-pdf
39+ path : lammps-tutorials.pdf
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3939\usepackage [title ]{appendix }
4040\usepackage {csquotes }
4141
42- % \usepackage{inconsolata} % Load a font with no ligatures
43-
4442\usepackage [
4543 type={CC},
4644 modifier={by-nc-sa},
You can’t perform that action at this time.
0 commit comments