Try forcing font encoding to T1 in Containers & IaC slides. #156
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 Slides | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- slides/** | |
jobs: | |
build-slides: | |
runs-on: ubuntu-latest | |
container: texlive/texlive:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
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 Slides | |
run: ./bin/build_slides.sh | |
- name: Upload Slides | |
uses: actions/upload-artifact@v4 | |
with: | |
name: slides | |
path: | | |
./dist/**/*.pdf |