Skip to content

Commit

Permalink
first version of github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen Leuveld committed Jan 9, 2024
1 parent f1f4c59 commit 7ce4e2f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build_latex.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build LaTeX document

on:
push:
branches:
- test

permissions:
contents: write

jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: main.tex
- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: PDF
path: main.pdf

0 comments on commit 7ce4e2f

Please sign in to comment.