We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49782f0 commit 2473581Copy full SHA for 2473581
.github/workflows/build-overlay-deb.yml
@@ -1,13 +1,20 @@
1
name: Build a Debian package using an overlay recipe
2
3
on:
4
+ # temporarily allow on push and pull_request
5
+ push:
6
+ pull_request:
7
workflow_dispatch:
8
inputs:
9
config:
10
description: 'Path to the YAML configuration file'
11
required: true
12
type: string
13
14
+# this provides a fallback on pull_request where we can't set the value
15
+env:
16
+ CONFIG_PATH: ${{ inputs.config || 'overlay-debs/mesa-experimental/mesa_25.1.0-1qcom1.yaml' }}
17
+
18
jobs:
19
build:
20
strategy:
0 commit comments