Skip to content

Commit

Permalink
Use GH actions to compile + upload document
Browse files Browse the repository at this point in the history
  • Loading branch information
danshapero committed Jun 28, 2023
1 parent fc67a54 commit ef26ebf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Compile and upload document'
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
container: ghcr.io/icepack/tensor-product-stokes:latest
steps:
- name: Check out git repository
uses: actions/checkout@v3
- name: Compile TeX document
run: make
- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: tensor-product-stokes
path: tensor-product-stokes.pdf

0 comments on commit ef26ebf

Please sign in to comment.