Renaming file everywhere

This commit is contained in:
Louis 2025-05-13 10:36:39 +02:00
parent 0dfc0debf0
commit fbf167152a

View file

@ -50,14 +50,15 @@ build_tex:
# - "./*.tex"
# - "./**/*.tex"
script:
- pdflatex --shell-escape presentation.tex
- biber article
- pdflatex --shell-escape presentation.tex
- FILE_NAME="presentation"
- pdflatex --shell-escape $FILE_NAME.tex
- biber $FILE_NAME
- pdflatex --shell-escape $FILE_NAME.tex
after_script:
- cat presentation.log
- cat $FILE_NAME.log
artifacts:
paths:
- presentation.pdf
- $FILE_NAME.pdf
deploy:
extends: .git:push