Revert "build-packages: Fix the handling of provenance artifacts" #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build packages for tags | |
on: | |
push: | |
tags: | |
- 'auth-*' | |
- 'dnsdist-*' | |
- 'rec-*' | |
jobs: | |
call-build-packages-auth: | |
uses: Habbie/pdns/.github/workflows/build-packages.yml@master | |
if: startsWith(github.ref_name, 'auth') | |
with: | |
is_release: 'YES' | |
product: 'authoritative' | |
ref: ${{ github.ref_name }} | |
secrets: | |
DOWNLOADS_AUTOBUILT_SECRET: ${{ secrets.DOWNLOADS_AUTOBUILT_SECRET }} | |
DOWNLOADS_AUTOBUILT_RSYNCTARGET: ${{ secrets.DOWNLOADS_AUTOBUILT_RSYNCTARGET }} | |
DOWNLOADS_AUTOBUILT_HOSTKEY: ${{ secrets.DOWNLOADS_AUTOBUILT_HOSTKEY }} | |
call-build-packages-dnsdist: | |
uses: Habbie/pdns/.github/workflows/build-packages.yml@master | |
if: startsWith(github.ref_name, 'dnsdist') | |
with: | |
is_release: 'YES' | |
product: 'dnsdist' | |
ref: ${{ github.ref_name }} | |
secrets: | |
DOWNLOADS_AUTOBUILT_SECRET: ${{ secrets.DOWNLOADS_AUTOBUILT_SECRET }} | |
DOWNLOADS_AUTOBUILT_RSYNCTARGET: ${{ secrets.DOWNLOADS_AUTOBUILT_RSYNCTARGET }} | |
DOWNLOADS_AUTOBUILT_HOSTKEY: ${{ secrets.DOWNLOADS_AUTOBUILT_HOSTKEY }} | |
call-build-packages-rec: | |
uses: Habbie/pdns/.github/workflows/build-packages.yml@master | |
if: startsWith(github.ref_name, 'rec') | |
with: | |
is_release: 'YES' | |
product: 'recursor' | |
ref: ${{ github.ref_name }} | |
secrets: | |
DOWNLOADS_AUTOBUILT_SECRET: ${{ secrets.DOWNLOADS_AUTOBUILT_SECRET }} | |
DOWNLOADS_AUTOBUILT_RSYNCTARGET: ${{ secrets.DOWNLOADS_AUTOBUILT_RSYNCTARGET }} | |
DOWNLOADS_AUTOBUILT_HOSTKEY: ${{ secrets.DOWNLOADS_AUTOBUILT_HOSTKEY }} |