Skip to content

Commit

Permalink
Merge pull request #2 from greengiraffe/master
Browse files Browse the repository at this point in the history
Add GitHub action that builds & uploads slides.tex as a PDF on every push
  • Loading branch information
dabrowskiw authored Oct 21, 2019
2 parents a49e97f + e464532 commit f886c7a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Build slides.tex to slides.pdf
uses: xu-cheng/[email protected]
with:
root_file: slides.tex
- name: Upload slides.pdf as artifact
uses: actions/upload-artifact@master
with:
name: slides.pdf
path: slides.pdf

0 comments on commit f886c7a

Please sign in to comment.