Make PDF all serial #10
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 PDF all serial | |
# includes apt update | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Install requirements | |
run: | | |
sudo apt update > /dev/null | |
sh scripts/install_requirements_pdf.sh > /dev/null | |
- name: Print versions | |
run: | | |
cat /etc/os-release | |
xelatex -v | |
latexmk -v | |
# pandoc -v | |
python3 --version | |
- name: Make PDF | |
run: latexmk hpmor hpmor-1 hpmor-2 hpmor-3 hpmor-4 hpmor-5 hpmor-6 > /dev/null | |
- name: Publish PDF to release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: WorkInProgress | |
prerelease: true | |
files: hpmor*.pdf |