You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/bake.yml
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,11 @@ name: bake
3
3
on:
4
4
workflow_call:
5
5
inputs:
6
+
runner:
7
+
type: string
8
+
description: "Linux machine to run build on. Can be one of auto, amd64, arm64 (defaults to auto which selects best-matching runner based on target platform)"
9
+
required: false
10
+
default: 'auto'
6
11
context:
7
12
type: string
8
13
description: "Context to build from (defaults to repository root)"
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,11 @@ name: build
3
3
on:
4
4
workflow_call:
5
5
inputs:
6
+
runner:
7
+
type: string
8
+
description: "Linux machine to run build on. Can be one of auto, amd64, arm64 (defaults to auto which selects best-matching runner based on target platform)"
9
+
required: false
10
+
default: 'auto'
6
11
context:
7
12
type: string
8
13
description: "Context to build from (defaults to repository root)"
0 commit comments