We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7faca3f commit 60bebebCopy full SHA for 60bebeb
1 file changed
.github/workflows/latexmk.yml
@@ -15,13 +15,13 @@ jobs:
15
steps:
16
# Step 1: Checkout the repository
17
- name: Checkout repository
18
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
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'
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y texlive texlive-latex-extra texlive-fonts-recommended texlive-xetex
25
26
# Step 3: Install make (required to run your Makefile)
27
- name: Install make
@@ -33,7 +33,7 @@ jobs:
33
34
# Step 5: Upload the generated PDF as an artifact
35
- name: Upload PDF artifact
36
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
37
with:
38
name: lammps-tutorials-pdf
39
path: lammps-tutorials.pdf
0 commit comments