From: Remi Gacogne Date: Fri, 30 Jun 2023 07:55:35 +0000 (+0200) Subject: build-tags: Fix product names X-Git-Tag: rec-5.0.0-alpha1~131^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F12970%2Fhead;p=thirdparty%2Fpdns.git build-tags: Fix product names --- 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 }}