File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 9
9
10
10
compile_latex :
11
11
name : Compile LaTeX
12
- runs-on : ubuntu-22.04
12
+ runs-on : ubuntu-latest
13
13
14
14
steps :
15
15
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
18
18
- name : Install LaTeX
19
19
run : |
@@ -27,28 +27,28 @@ jobs:
27
27
run : ls -lah .
28
28
29
29
- name : Upload PDF
30
- uses : actions/upload-artifact@v3
30
+ uses : actions/upload-artifact@v4
31
31
with :
32
32
path : thesis.pdf
33
33
name : document
34
34
35
35
release_pdf :
36
36
name : Create release
37
37
needs : [ compile_latex ]
38
- runs-on : ubuntu-22.04
38
+ runs-on : ubuntu-latest
39
39
40
40
steps :
41
41
42
42
- name : Download PDF
43
- uses : actions/download-artifact@v3
43
+ uses : actions/download-artifact@v4
44
44
with :
45
45
name : document
46
46
47
47
- name : Inspect folder
48
48
run : ls -lah .
49
49
50
50
- name : Release PDF
51
- uses : softprops/action-gh-release@v1
51
+ uses : softprops/action-gh-release@v2
52
52
if : startsWith(github.ref, 'refs/tags/')
53
53
with :
54
54
files : thesis.pdf
You can’t perform that action at this time.
0 commit comments