]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
build-tags: Fix product names 12970/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 30 Jun 2023 07:55:35 +0000 (09:55 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 30 Jun 2023 08:27:52 +0000 (10:27 +0200)
.github/workflows/build-packages.yml
.github/workflows/build-tags.yml

index 3df8f9dbe9d74d44e20b80260ddae5b3dc143fcc..958fed26063269abda17fa0fd25e9d66b7807714 100644 (file)
@@ -97,7 +97,9 @@ jobs:
       - name: Normalize package name
         id: normalize-name
         run: |
-          if [ "x${{ inputs.product }}" = "xrecursor" ]; then
+          if [ "x${{ inputs.product }}" = "xauthoritative" ]; then
+            echo "normalized-package-name=pdns" >> $GITHUB_OUTPUT
+          elif [ "x${{ inputs.product }}" = "xrecursor" ]; then
             echo "normalized-package-name=pdns-recursor" >> $GITHUB_OUTPUT
           else
             echo "normalized-package-name=${{ inputs.product }}" >> $GITHUB_OUTPUT
index 89e69a100adc549e146127e1e9611897821b8a67..6431ec9d5ff91ad1825b7053ed1f31ac43c7d9c4 100644 (file)
@@ -14,7 +14,7 @@ jobs:
     if: startsWith(github.ref_name, 'auth')
     with:
       is_release: 'YES'
-      product: 'auth'
+      product: 'authoritative'
       ref: ${{ github.ref_name }}
     secrets:
       DOWNLOADS_AUTOBUILT_SECRET: ${{ secrets.DOWNLOADS_AUTOBUILT_SECRET }}
@@ -38,7 +38,7 @@ jobs:
     if: startsWith(github.ref_name, 'rec')
     with:
       is_release: 'YES'
-      product: 'auth'
+      product: 'recursor'
       ref: ${{ github.ref_name }}
     secrets:
       DOWNLOADS_AUTOBUILT_SECRET: ${{ secrets.DOWNLOADS_AUTOBUILT_SECRET }}