Fixed pipeline syntax.

This commit is contained in:
Patrick Lehmann
2024-11-03 09:07:27 +01:00
parent c924651632
commit bec076bd66
15 changed files with 17 additions and 17 deletions

View File

@@ -78,7 +78,7 @@ on:
jobs:
Prepare:
name: 📓 Extract configurations from pyproject.toml
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
outputs:
coverage_report_html_directory: ${{ steps.getVariables.outputs.coverage_report_html_directory }}
coverage_report_xml_directory: ${{ steps.getVariables.outputs.coverage_report_xml_directory }}
@@ -164,7 +164,7 @@ jobs:
Sphinx-HTML:
name: 📓 Documentation generation using Sphinx and Python ${{ inputs.python_version }}
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
needs:
- Prepare
@@ -219,7 +219,7 @@ jobs:
Sphinx-LaTeX:
name: 📓 Documentation generation using Sphinx and Python ${{ inputs.python_version }}
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
needs:
- Prepare