Move Linkedin social profile after website #189
Workflow file for this run
This file contains hidden or 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: Compile PDFs | |
| on: | |
| push: {} | |
| pull_request: {} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: texlive/texlive:latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Install fonts | |
| run: | | |
| apt update | |
| apt install --yes \ | |
| fonts-roboto \ | |
| fonts-adobe-sourcesans3 \ | |
| ; | |
| - name: Compile | |
| run: make | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: examples | |
| path: examples/*.pdf |