refactor: rename tesi folder #2
Workflow file for this run
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: New tesi release from tag | |
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*-tesi' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Github Action for LaTeX | |
id: latex | |
uses: xu-cheng/latex-action@v3 | |
with: | |
root_file: tesi/tesi.tex | |
continue_on_error: true | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: tesi.pdf | |