Skip to content

Commit

Permalink
created action to build pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
ghowelldsp authored Mar 9, 2024
1 parent 2c31869 commit 4d9f380
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy PDF
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: introduction_to_linear_algebra_notes.tex

- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: PDF
path: introduction_to_linear_algebra_notes.pdf

0 comments on commit 4d9f380

Please sign in to comment.