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 410c6ae
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 'Compile and upload document'
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
container:
image: ghcr.io/icepack/tensor-product-stokes:0.0.1
options: --user root
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 410c6ae

Please sign in to comment.