Skip to content

Commit 3e5168c

Browse files
committed
add
1 parent 343163a commit 3e5168c

File tree

1 file changed

+24
-23
lines changed

1 file changed

+24
-23
lines changed

.github/workflows/jekyll-gh-pages.yml

+24-23
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,20 @@ jobs:
1818
awesome-cv-copy:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- name: Checkout Repository
21+
- name: Checkout repository
2222
uses: actions/checkout@v4
2323

24-
- name: Set Up Make
24+
- name: Set up Make
2525
run: sudo apt-get update && sudo apt-get install -y make
2626

2727
- name: Cache TeX Live
28-
id: cache-texlive
2928
uses: actions/cache@v3
3029
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
3332
restore-keys: |
3433
${{ runner.os }}-texlive-
3534
36-
- name: Notify Cache Hit
37-
if: steps.cache-texlive.outputs.cache-hit == 'true'
38-
run: echo "TeX Live cache was successfully restored."
39-
4035
- name: Install TeX Live 2023
4136
if: steps.cache-texlive.outputs.cache-hit != 'true'
4237
run: |
@@ -52,34 +47,40 @@ jobs:
5247
# Create a texlive.profile for automated installation
5348
cat <<EOF > texlive.profile
5449
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
6156
binary_x86_64-linux 1
6257
collection-basic 1
6358
collection-latex 1
6459
collection-fontsrecommended 1
6560
collection-xetex 1
6661
collection-latexextra 1
67-
collection-fonts-extra 1
6862
EOF
6963
7064
# Run the installer with the profile
71-
./install-tl --profile=texlive.profile
65+
sudo ./install-tl --profile=texlive.profile
7266
7367
- 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
7569

76-
- name: Verify Cache Restoration
70+
- name: Print PATH
71+
run: echo $PATH
72+
73+
- name: Verify TeX Live Installation
7774
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/
7980

80-
- name: Update tlmgr and Install LaTeX Packages
81+
- name: Update tlmgr and Install Missing LaTeX Packages
8182
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
8384
8485
- name: Confirm Package Installation
8586
run: |
@@ -94,7 +95,7 @@ jobs:
9495
run: make awesome-cv-copy
9596

9697
- 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
9899

99100
build:
100101
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)