Revised assessment slides in course overview. #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Notes | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- notes/** | |
jobs: | |
build-notes: | |
runs-on: ubuntu-latest | |
container: texlive/texlive:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Disable git owner warning | |
run: git config --global safe.directory '*' | |
- name: Correct last modified | |
run: ./.github/workflows/set-last-updated.sh | |
- name: Compile Notes | |
run: ./bin/build_notes.sh | |
- name: Upload Slides | |
uses: actions/upload-artifact@v3 | |
with: | |
name: notes | |
path: | | |
./dist/**/*.pdf | |
./dist/**/*.html | |
./dist/**/*.css | |
./dist/**/*.svg | |
./dist/**/*.png | |
./dist/**/*.jpg | |
./dist/**/*.jpeg | |
./dist/**/*.gif | |