Skip to content

Commit 3bc6539

Browse files
committed
Allow setting the used MiKTeX docker image for CompletePipeline.
1 parent 5a75dea commit 3bc6539

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/CompletePipeline.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,11 @@ on:
128128
required: false
129129
default: 'html pages' # none, html, latex, pdf, pages, asset, all
130130
type: string
131+
miktex_image:
132+
description: 'Name of MiKTeX docker image.'
133+
required: false
134+
default: 'pytooling/miktex:sphinx'
135+
type: string
131136
secrets:
132137
PYPI_TOKEN:
133138
description: "Token for pushing releases to PyPI."
@@ -399,6 +404,7 @@ jobs:
399404
latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }}
400405
pdf_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_pdf }}
401406
can-fail: 'true'
407+
miktex_image: ${{ inputs.miktex_image }}
402408

403409
PublishToGitHubPages:
404410
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@dev

.github/workflows/LaTeXDocumentation.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ jobs:
7070
continue-on-error: ${{ inputs.can-fail == 'true' }}
7171
container:
7272
image: ${{ inputs.miktex_image }}
73-
volumes:
74-
- ${{ github.workspace }}/latex:/latex
7573
steps:
7674
- name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job
7775
uses: pyTooling/download-artifact@v8

myFramework/Extension/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
__email__ = "Paebbels@gmail.com"
3737
__copyright__ = "2017-2026, Patrick Lehmann"
3838
__license__ = "Apache License, Version 2.0"
39-
__version__ = "0.14.8"
39+
__version__ = "7.6.0"
4040
__keywords__ = ["GitHub Actions"]
4141
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
4242

myPackage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
__email__ = "Paebbels@gmail.com"
3737
__copyright__ = "2017-2026, Patrick Lehmann"
3838
__license__ = "Apache License, Version 2.0"
39-
__version__ = "7.5.1"
39+
__version__ = "7.6.0"
4040
__keywords__ = ["GitHub Actions"]
4141
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
4242

run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Param(
3838

3939
$ProjectName = "Actions"
4040
$PackageName = "myPackage"
41-
$PackageVersion = "7.5.1"
41+
$PackageVersion = "7.6.0"
4242
$PythonVersion = "3.14"
4343
$LaTeXDocument = "${ProjectName}.tex"
4444

0 commit comments

Comments
 (0)