Skip to content

Commit 201c4ce

Browse files
committed
Enable workflow_dispatch for builder
1 parent cf12021 commit 201c4ce

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

.github/workflows/builder.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,7 @@
22
name: 'Test package building for specific distributions'
33

44
on:
5-
workflow_call:
6-
inputs:
7-
branch-name:
8-
description: 'Checkout to a specific branch'
9-
required: true
10-
default: ''
11-
type: string
12-
schedule:
13-
- cron: '0 1 * * *'
5+
workflow_dispatch:
146

157
permissions: # least privileges, see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
168
contents: read
@@ -28,16 +20,14 @@ jobs:
2820

2921
build:
3022
name: build.sh
31-
if: ${{ vars.SCHEDULED_JOBS_BUILDER || github.event_name != 'schedule' }}
3223
needs: prepare
3324
runs-on: ${{ matrix.runner-os }}
3425
strategy:
3526
matrix:
36-
product: ['authoritative', 'recursor', 'dnsdist']
27+
product: ['dnsdist']
3728
os:
38-
- centos-9-stream
39-
- centos-10-stream
40-
- amazon-2023
29+
- debian-bookworm
30+
- debian-trixie
4131
runner-os: ${{ fromJson(needs.prepare.outputs.runnerlist )}}
4232
fail-fast: false
4333
steps:

0 commit comments

Comments
 (0)