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

@@ -43,7 +43,7 @@ on:
jobs:
ArtifactCleanUp:
name: 🗑️ Artifact Cleanup
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: 🗑️ Delete package Artifacts

View File

@@ -47,7 +47,7 @@ on:
jobs:
DocCoverage:
name: 👀 Check documentation coverage
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: ⏬ Checkout repository
uses: actions/checkout@v4

View File

@@ -68,7 +68,7 @@ jobs:
Coverage:
name: 📈 Collect Coverage Data using Python ${{ inputs.python_version }}
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: ⏬ Checkout repository

View File

@@ -41,7 +41,7 @@ on:
jobs:
IntermediateCleanUp:
name: 🗑️ Intermediate Artifact Cleanup
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: 🗑️ Delete SQLite coverage artifacts from matrix jobs
uses: geekyeggo/delete-artifact@v5

View File

@@ -47,7 +47,7 @@ on:
jobs:
PDFDocumentation:
name: 📓 Converting LaTeX Documentation to PDF
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job
uses: actions/download-artifact@v4

View File

@@ -49,7 +49,7 @@ jobs:
Package:
name: 📦 Package in Source and Wheel Format
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: ⏬ Checkout repository

View File

@@ -101,7 +101,7 @@ on:
jobs:
Parameters:
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
outputs:
python_version: ${{ steps.params.outputs.python_version }}
python_jobs: ${{ steps.params.outputs.python_jobs }}

View File

@@ -62,7 +62,7 @@ on:
jobs:
PublishCoverageResults:
name: 📊 Publish Code Coverage Results
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
if: always()
steps:

View File

@@ -53,7 +53,7 @@ jobs:
PublishOnPyPI:
name: 🚀 Publish to PyPI
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: 📥 Download artifacts '${{ inputs.artifact }}' from 'Package' job

View File

@@ -49,7 +49,7 @@ on:
jobs:
PublishTestResults:
name: 📊 Publish Test Results
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
if: always()
steps:

View File

@@ -49,7 +49,7 @@ jobs:
PublishToGitHubPages:
name: 📚 Publish to GH-Pages
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: ⏬ Checkout repository

View File

@@ -29,7 +29,7 @@ jobs:
Release:
name: 📝 Create 'Release Page' on GitHub
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: 🔁 Extract Git tag from GITHUB_REF

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

View File

@@ -68,7 +68,7 @@ jobs:
StaticTypeCheck:
name: 👀 Check Static Typing using Python ${{ inputs.python_version }}
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: ⏬ Checkout repository

View File

@@ -40,7 +40,7 @@ jobs:
VerifyDocs:
name: 👍 Verify example snippets using Python ${{ inputs.python_version }}
runs-on: "ubuntu-${ubuntu_image_version}"
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps:
- name: ⏬ Checkout repository