fix usage of correct block body font definition for alertblock and ex… #60
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: test-build-latex | |
on: push | |
env: | |
SOURCE_NAME: main | |
jobs: | |
build-pdflatex: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: ./.github/actions/latexmk-and-output | |
with: | |
job_engine: pdf | |
job_source: ${{ env.SOURCE_NAME }} | |
job_artifact_suffix: -pdflatex | |
build-xelatex: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: ./.github/actions/latexmk-and-output | |
with: | |
job_engine: pdfxe | |
job_source: ${{ env.SOURCE_NAME }} | |
job_artifact_suffix: -xelatex | |
build-lualatex: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: ./.github/actions/latexmk-and-output | |
with: | |
job_engine: pdflua | |
job_source: ${{ env.SOURCE_NAME }} | |
job_artifact_suffix: -lualatex |