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: jobs:
ArtifactCleanUp: ArtifactCleanUp:
name: 🗑️ Artifact Cleanup name: 🗑️ Artifact Cleanup
runs-on: "ubuntu-${ubuntu_image_version}" runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
steps: steps:
- name: 🗑️ Delete package Artifacts - name: 🗑️ Delete package Artifacts

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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