Fixed prefix parameters and fixed typo in workflow name.

This commit is contained in:
Patrick Lehmann
2024-01-12 14:23:04 +01:00
parent 8ad5a861b4
commit 3920096e31
2 changed files with 7 additions and 7 deletions

View File

@@ -43,7 +43,7 @@ jobs:
if: inputs.sqlite_coverage_artifacts_prefix != ''
continue-on-error: true
with:
name: ${{ inputs.sqlite_coverage_artifacts_prefix }}-*
name: ${{ inputs.sqlite_coverage_artifacts_prefix }}*
token: ${{ secrets.GITHUB_TOKEN }}
- name: 🗑️ Delete XML coverage artifacts from matrix jobs
@@ -51,5 +51,5 @@ jobs:
if: inputs.xml_unittest_artifacts_prefix != ''
continue-on-error: true
with:
name: ${{ inputs.xml_unittest_artifacts_prefix }}-*
name: ${{ inputs.xml_unittest_artifacts_prefix }}*
token: ${{ secrets.GITHUB_TOKEN }}