Skip to content

Commit a8eed80

Browse files
authored
Update deploy_html_pdf.yml
1 parent 11c3aff commit a8eed80

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/deploy_html_pdf.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,14 @@ jobs:
2929
sudo apt update
3030
sudo apt install texlive-full
3131
32-
- name: Build Latex PDF and HTML
32+
- name: Build Latex PDF
3333
run: |
3434
mkdir ./public
3535
cp *.tex public/
3636
cp -r images/ public/
3737
cd public/
3838
pdflatex ElaboracionMemoriaTFG.tex
3939
pdflatex ElaboracionMemoriaTFG.tex
40-
make4ht ElaboracionMemoriaTFG.tex
41-
mv ElaboracionMemoriaTFG.html index.html
4240
4341
# Save the TeX Live installation to cache for future use
4442
- name: Save TeX Live Cache
@@ -60,6 +58,12 @@ jobs:
6058
tag_name: Current
6159
files: public/ElaboracionMemoriaTFG.pdf
6260

61+
- name: Build Latex HTML
62+
run: |
63+
cd public/
64+
make4ht ElaboracionMemoriaTFG.tex
65+
mv ElaboracionMemoriaTFG.html index.html
66+
6367
- name: Publish HTML to GitHub Pages
6468
uses: peaceiris/actions-gh-pages@v3
6569
with:

0 commit comments

Comments
 (0)