- 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
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 }}
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 }}