]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
gh actions - misc-dailies: fix pip name normalization when validating hashes 16215/head
authorromeroalx <alexis.romero@open-xchange.com>
Mon, 6 Oct 2025 10:50:31 +0000 (12:50 +0200)
committerromeroalx <alexis.romero@open-xchange.com>
Mon, 6 Oct 2025 10:50:31 +0000 (12:50 +0200)
.github/workflows/misc-dailies.yml

index 1fa9646e99ad3ea7b6528f59122adcc7670d972e..9a14fbfc429d646236fb4f111ebf733245f89d63 100644 (file)
@@ -136,7 +136,7 @@ jobs:
         env:
           ID: ${{ steps.proxpi-docker.outputs.id }}
         run: |
-          docker logs "${ID}" 2>&1 | grep whl | awk '{print $8}' | cut -d "/" -f 4 | awk -F'-' '{print $1"=="$2}' | sort -u --ignore-case | sed 's/_/-/' | egrep -v "pip==|setuptools==" > /tmp/proxpi.log
+          docker logs "${ID}" 2>&1 | grep whl | awk '{print $8}' | cut -d "/" -f 4 | awk -F'-' '{print $1"=="$2}' | sort -u --ignore-case | sed 's/_/-/g' | egrep -v "pip==|setuptools==" > /tmp/proxpi.log
           cat /tmp/proxpi.log
       - name: check only listed packages were installed
         run: for i in `cat /tmp/proxpi.log`; do grep -qq -i $i ${REQUIREMENTS_FILE} || ( echo "$i not found" && exit 1 ); done