From f6caa99a955f1028958c792c976a9addc3b9b0ed Mon Sep 17 00:00:00 2001 From: a-eljazouly Date: Tue, 6 Feb 2024 09:34:46 +0100 Subject: [PATCH] focus only on rpm --- .github/actions/merge-artifacts/action.yml | 4 ++-- .github/workflows/perl-cpan-libraries.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/merge-artifacts/action.yml b/.github/actions/merge-artifacts/action.yml index 4717619fd..a213c8fa3 100644 --- a/.github/actions/merge-artifacts/action.yml +++ b/.github/actions/merge-artifacts/action.yml @@ -17,7 +17,7 @@ inputs: runs: using: 'composite' steps: - - name: Download ${{ matrix.type_of_report }} Artifacts + - name: Download Artifacts uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0 with: pattern: ${{ inputs.source_name_pattern }}* @@ -32,7 +32,7 @@ runs: ${{ inputs.source_paths }} retention-days: 1 - - name: Delete ${{ matrix.type_of_report }} Artifacts + - name: Delete Artifacts run: | artifact_pattern="${{ inputs.source_name_pattern }}" TOKEN="${{ inputs.github_token }}" diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index e15b4426c..f5252de1b 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -231,7 +231,7 @@ jobs: uses: ./.github/actions/merge-artifacts with: target_name: packages-rpm-${{ matrix.distrib }} - source_paths: packages-rpm-${{ matrix.distrib }}/*.rpm + source_paths: packages-rpm-${{ matrix.distrib }}/ source_name_pattern: packages-rpm-${{ matrix.distrib }}- github_token: ${{ secrets.GITHUB_TOKEN }}