Skip to content

Commit

Permalink
Merge pull request #2 from wavesgroup/build-pdf
Browse files Browse the repository at this point in the history
CI script to build the pdf
  • Loading branch information
milancurcic authored Aug 20, 2024
2 parents 102e66b + a496b41 commit a559ce5
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up TeX Live
run: |
sudo apt update
sudo apt install -y texlive-latex-base
- name: Compile LaTeX document
run: |
make
- name: Upload PDF as artifact
uses: actions/upload-artifact@v4
with:
name: fluid-mechanics-notes
path: notes.pdf
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@ Notes for Fluid Mechanics (OCE 675) taught at the Rosenstiel School.

See the [Syllabus](syllabus.md) for the Fall 2024 course information.

These notes are a work in progress as the lectures progress during the semester.
They will be near complete as we approach the final exam.

All content in this repo is licensed under
[CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/).

0 comments on commit a559ce5

Please sign in to comment.