Add files via upload #100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Compilazione # Action name | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download file della Repo | |
uses: actions/[email protected] | |
- name: Compilazione del file della Relazione | |
uses: xu-cheng/latex-action@v3 | |
with: # insert here files to compile | |
working_directory: Report | |
root_file: Pomodoro_Musei_di_Pesaro_Report.tex | |
- name: Ridenominazione files | |
run: mv Report/Pomodoro_Musei_di_Pesaro_Report.pdf Report/Relazione_Pomodoro_Musei_di_Pesaro.pdf | |
- name: Caricamento della Release temporanea | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Relazione | |
path: Report/Relazione_Pomodoro_Musei_di_Pesaro.pdf | |