-
Notifications
You must be signed in to change notification settings - Fork 915
45 lines (40 loc) · 1.41 KB
/
build-packages-daily-master.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
name: 'daily: build packages for master '
on:
schedule:
- cron: '0 5 * * *'
permissions:
actions: read
id-token: write
contents: write
jobs:
call-build-packages-auth:
uses: PowerDNS/pdns/.github/workflows/build-packages.yml@master
with:
is_release: 'NO'
product: 'authoritative'
ref: master
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: PowerDNS/pdns/.github/workflows/build-packages.yml@master
with:
is_release: 'NO'
product: 'dnsdist'
ref: master
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: PowerDNS/pdns/.github/workflows/build-packages.yml@master
with:
is_release: 'NO'
product: 'recursor'
ref: master
secrets:
DOWNLOADS_AUTOBUILT_SECRET: ${{ secrets.DOWNLOADS_AUTOBUILT_SECRET }}
DOWNLOADS_AUTOBUILT_RSYNCTARGET: ${{ secrets.DOWNLOADS_AUTOBUILT_RSYNCTARGET }}
DOWNLOADS_AUTOBUILT_HOSTKEY: ${{ secrets.DOWNLOADS_AUTOBUILT_HOSTKEY }}