From cd2f66fbb847efc49942bdb4b39f588684baf885 Mon Sep 17 00:00:00 2001 From: Kevin Duret Date: Tue, 6 Feb 2024 15:32:04 +0100 Subject: [PATCH] fix(ci): deliver cpan libs with distrib in package name --- .github/workflows/perl-cpan-libraries.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index 77d69064eb..4345af1354 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -339,10 +339,10 @@ jobs: if [ -z "${{ matrix.version }}" ]; then PACKAGE_VERSION="" else - PACKAGE_VERSION="--version ${{ matrix.version }}-${{ matrix.distrib }}" + PACKAGE_VERSION="--version ${{ matrix.version }}~${{ matrix.distrib }}" fi - DEB_BUILD_OPTIONS="nocheck nodocs notest" dh-make-perl make --build $PACKAGE_VERSION --cpan ${{ matrix.name }} + DEB_BUILD_OPTIONS="nocheck nodocs notest" dh-make-perl make --dist ${{ matrix.distrib }} --build $PACKAGE_VERSION --cpan ${{ matrix.name }} shell: bash - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3