@@ -18,25 +18,20 @@ jobs:
18
18
awesome-cv-copy :
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - name : Checkout Repository
21
+ - name : Checkout repository
22
22
uses : actions/checkout@v4
23
23
24
- - name : Set Up Make
24
+ - name : Set up Make
25
25
run : sudo apt-get update && sudo apt-get install -y make
26
26
27
27
- name : Cache TeX Live
28
- id : cache-texlive
29
28
uses : actions/cache@v3
30
29
with :
31
- path : $HOME /texlive/2023
32
- key : ${{ runner.os }}-texlive-2023
30
+ path : /usr/local /texlive/2023
31
+ key : ${{ runner.os }}-texlive-2023-unique # Updated to force cache refresh
33
32
restore-keys : |
34
33
${{ runner.os }}-texlive-
35
34
36
- - name : Notify Cache Hit
37
- if : steps.cache-texlive.outputs.cache-hit == 'true'
38
- run : echo "TeX Live cache was successfully restored."
39
-
40
35
- name : Install TeX Live 2023
41
36
if : steps.cache-texlive.outputs.cache-hit != 'true'
42
37
run : |
@@ -52,34 +47,40 @@ jobs:
52
47
# Create a texlive.profile for automated installation
53
48
cat <<EOF > texlive.profile
54
49
selected_scheme scheme-full
55
- TEXDIR $HOME /texlive/2023
56
- TEXMFCONFIG $HOME /.texlive2023/texmf-config
57
- TEXMFHOME $HOME /texmf
58
- TEXMFLOCAL $HOME /texlive/2023/texmf-local
59
- TEXMFSYSCONFIG $HOME /texlive/2023/texmf-config
60
- TEXMFSYSVAR $HOME /texlive/2023/texmf-var
50
+ TEXDIR /usr/local /texlive/2023
51
+ TEXMFCONFIG ~ /.texlive2023/texmf-config
52
+ TEXMFHOME ~ /texmf
53
+ TEXMFLOCAL /usr/local /texlive/2023/texmf-local
54
+ TEXMFSYSCONFIG /usr/local /texlive/2023/texmf-config
55
+ TEXMFSYSVAR /usr/local /texlive/2023/texmf-var
61
56
binary_x86_64-linux 1
62
57
collection-basic 1
63
58
collection-latex 1
64
59
collection-fontsrecommended 1
65
60
collection-xetex 1
66
61
collection-latexextra 1
67
- collection-fonts-extra 1
68
62
EOF
69
63
70
64
# Run the installer with the profile
71
- ./install-tl --profile=texlive.profile
65
+ sudo ./install-tl --profile=texlive.profile
72
66
73
67
- name : Add TeX Live to PATH
74
- run : echo "$HOME /texlive/2023/bin/x86_64-linux" >> $GITHUB_PATH
68
+ run : echo "/usr/local /texlive/2023/bin/x86_64-linux" >> $GITHUB_PATH
75
69
76
- - name : Verify Cache Restoration
70
+ - name : Print PATH
71
+ run : echo $PATH
72
+
73
+ - name : Verify TeX Live Installation
77
74
run : |
78
- ls -la $HOME/texlive/2023
75
+ which xelatex
76
+ xelatex --version
77
+
78
+ - name : List TeX Live Binaries
79
+ run : ls -l /usr/local/texlive/2023/bin/x86_64-linux/
79
80
80
- - name : Update tlmgr and Install LaTeX Packages
81
+ - name : Update tlmgr and Install Missing LaTeX Packages
81
82
run : |
82
- sudo $HOME /texlive/2023/bin/x86_64-linux/tlmgr install etoolbox adjustbox roboto sourcesanspro fontawesome5 tcolorbox
83
+ sudo /usr/local /texlive/2023/bin/x86_64-linux/tlmgr install etoolbox adjustbox roboto sourcesanspro fontawesome5 tcolorbox
83
84
84
85
- name : Confirm Package Installation
85
86
run : |
94
95
run : make awesome-cv-copy
95
96
96
97
- name : Output TeX Live Installation Log
97
- run : cat $HOME /texlive/2023/install-tl.log
98
+ run : cat /usr/local /texlive/2023/install-tl.log
98
99
99
100
build :
100
101
runs-on : ubuntu-latest
0 commit comments