mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-18 05:56:57 +08:00
LaTeX: Using alternative for addnab/docker-run-action.
This commit is contained in:
29
.github/workflows/LaTeXDocumentation.yml
vendored
29
.github/workflows/LaTeXDocumentation.yml
vendored
@@ -42,6 +42,11 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
default: 'xelatex'
|
default: 'xelatex'
|
||||||
type: string
|
type: string
|
||||||
|
halt-on-error:
|
||||||
|
description: 'Halt on first error, otherwise continue as long as possible.'
|
||||||
|
required: false
|
||||||
|
default: 'true'
|
||||||
|
type: string
|
||||||
pdf_artifact:
|
pdf_artifact:
|
||||||
description: 'Name of the PDF documentation artifact.'
|
description: 'Name of the PDF documentation artifact.'
|
||||||
required: false
|
required: false
|
||||||
@@ -58,29 +63,27 @@ jobs:
|
|||||||
name: 📓 Converting LaTeX Documentation to PDF
|
name: 📓 Converting LaTeX Documentation to PDF
|
||||||
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
||||||
continue-on-error: ${{ inputs.can-fail == 'true' }}
|
continue-on-error: ${{ inputs.can-fail == 'true' }}
|
||||||
|
container:
|
||||||
|
image: pytooling/miktex:sphinx
|
||||||
|
volumes:
|
||||||
|
- ${{ github.workspace }}/latex:/latex
|
||||||
steps:
|
steps:
|
||||||
- name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job
|
- name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job
|
||||||
uses: pyTooling/download-artifact@v7
|
uses: pyTooling/download-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: ${{ inputs.latex_artifact }}
|
name: ${{ inputs.latex_artifact }}
|
||||||
path: latex
|
path: latex
|
||||||
|
investigate: 'true'
|
||||||
# - name: Debug
|
|
||||||
# run: |
|
|
||||||
# tree -pash .
|
|
||||||
|
|
||||||
- name: Build LaTeX document using 'pytooling/miktex:sphinx'
|
- name: Build LaTeX document using 'pytooling/miktex:sphinx'
|
||||||
uses: addnab/docker-run-action@v3
|
|
||||||
if: inputs.pdf_artifact != ''
|
if: inputs.pdf_artifact != ''
|
||||||
with:
|
run: |
|
||||||
image: pytooling/miktex:sphinx
|
if [[ "${{ inputs.halt-on-error }}" == "true" ]]; then
|
||||||
options: -v ${{ github.workspace }}/latex:/latex --workdir /latex
|
HALT_ON_ERROR="--halt-on-error"
|
||||||
run: |
|
fi
|
||||||
# which ${{ inputs.processor }}
|
|
||||||
# pwd
|
|
||||||
# ls -lAh
|
|
||||||
|
|
||||||
latexmk -${{ inputs.processor }} "${{ inputs.document }}.tex"
|
cd latex
|
||||||
|
latexmk --${{ inputs.processor }} --interaction=nonstopmode -file-line-error -max-print-line=250 ${HALT_ON_ERROR} "${{ inputs.document }}.tex"
|
||||||
|
|
||||||
- name: 📤 Upload 'PDF Documentation' artifact
|
- name: 📤 Upload 'PDF Documentation' artifact
|
||||||
uses: pyTooling/upload-artifact@v6
|
uses: pyTooling/upload-artifact@v6
|
||||||
|
|||||||
Reference in New Issue
Block a user