From 1738caadfd12dd9b0a0abc24163bfe8ca54a5f1d Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Fri, 30 Jun 2023 09:55:35 +0200 Subject: [PATCH] build-tags: Fix product names --- .github/workflows/build-packages.yml | 4 +++- .github/workflows/build-tags.yml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-packages.yml b/.github/workflows/build-packages.yml index 3df8f9dbe9..958fed2606 100644 --- a/.github/workflows/build-packages.yml +++ b/.github/workflows/build-packages.yml @@ -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 diff --git a/.github/workflows/build-tags.yml b/.github/workflows/build-tags.yml index 89e69a100a..6431ec9d5f 100644 --- a/.github/workflows/build-tags.yml +++ b/.github/workflows/build-tags.yml @@ -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 }} -- 2.47.2