Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Removed dots from names. #67

Removed dots from names.

Removed dots from names. #67

Workflow file for this run

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