This repository was archived by the owner on Oct 3, 2024. It is now read-only.
Removed dots from names. #67
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: ML | |
on: [workflow_dispatch, pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- name: Update dependencies | |
run: sudo apt-get update | |
- name: Install essentials and fonts | |
run: | | |
sudo apt-get install -y texlive-xetex pandoc | |
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections | |
sudo apt-get install -y --reinstall ttf-mscorefonts-installer | |
sudo fc-cache -f | |
- uses: actions/checkout@v4 | |
- name: Build PDF | |
run: | | |
bash BuildLectures.sh | |
bash BuildTheory.sh | |
bash BuildAllTheory.sh | |
- name: Upload PDF to artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ml | |
path: | | |
lectures/*.pdf | |
theory/*.pdf | |
if-no-files-found: error |