Files
Appunti-controlli-automatici/.gitea/workflows/build.yaml
Matteo Schiff 6e90195737
All checks were successful
Build document / build (push) Successful in 8s
improvement(workflow): Cambio nome e overwrite artifact
2024-06-05 10:57:22 +00:00

22 lines
477 B
YAML

name: Build document
run-name: Build from ${{ gitea.actor }} 🚀
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Compile LaTeX document
uses: dante-ev/latex-action@latest
with:
root_file: ProgettareSistemi.tex
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: appunti-loop-shaping-design
path: ./ProgettareSistemi.pdf
overwrite: true