Skip to content

Update make-pdf-6-parallel.yml #3

Update make-pdf-6-parallel.yml

Update make-pdf-6-parallel.yml #3

name: Build PDF 6 in parallel (with log output)
# no apt update included
on:
workflow_dispatch:
jobs:
build_pdf:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 1 # 0 if you want to push to repo
- name: Install requirements
run: sh scripts/install_requirements_pdf.sh > /dev/null
- name: Make PDF
run: latexmk ${{ matrix.file }}
- name: Publish PDF to release
uses: softprops/action-gh-release@v2
with:
tag_name: WorkInProgress
prerelease: true
files: ${{ matrix.file }}
parallel_build:
strategy:
matrix:
file:
- hpmor-1
- hpmor-2
- hpmor-3
- hpmor-4
- hpmor-5
- hpmor-6
runs-on: ubuntu-latest
needs: []
steps:
- name: Build PDF
uses: build_pdf