Skip to content

Commit

Permalink
build: CI/CD relazione + presentazione
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Pascucci committed Sep 16, 2023
1 parent 85bfe30 commit 7380b91
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release_presentazione.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: New tesi release from tag
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*-presentazione' # 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: presentazione/presentazione.tex
continue_on_error: true
- name: Release
uses: softprops/action-gh-release@v1
with:
files: presentazione.pdf

26 changes: 26 additions & 0 deletions .github/workflows/release_sistemi_autonomi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: New tesi release from tag
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*-sistemi-autonomi' # 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: relazione_sistemi_autonomi/sistemi_autonomi.tex
continue_on_error: true
- name: Release
uses: softprops/action-gh-release@v1
with:
files: sistemi_autonomi.pdf

0 comments on commit 7380b91

Please sign in to comment.