Skip to content

Commit

Permalink
Merge pull request #2 from lscarton/main
Browse files Browse the repository at this point in the history
Introducing CI workflow to automatic compile the report.tex
  • Loading branch information
alex-mitrevski authored Jul 7, 2024
2 parents f951c9a + c44a98e commit 466bcf4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build LaTeX document
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: "report.tex"
working_directory: ./
- name: Upload PDF file
uses: actions/upload-artifact@v4
with:
name: PDF
path: ./*.pdf
retention-days: 10
if-no-files-found: error
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# R&D Project Report Latex Template
![event parameter](../../actions/workflows/main.yml/badge.svg?event=push)

This is a template for R&D project reports in the Autonomous Systems master's program at Hochschule Bonn-Rhein-Sieg, using the `IEEETran` class.

Expand Down

0 comments on commit 466bcf4

Please sign in to comment.