-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathaction.yml
More file actions
41 lines (41 loc) · 1.47 KB
/
action.yml
File metadata and controls
41 lines (41 loc) · 1.47 KB
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
name: Setup Docker Builder
author: Blacksmith
description: Sets up a Docker buildkitd builder with sticky disk cache for improved build performance
branding:
icon: layers
color: black
inputs:
buildx-version:
description: Buildx version. (e.g., v0.23.0, latest)
required: false
default: v0.23.0
platforms:
description: "List of target platforms for build (e.g., linux/amd64,linux/arm64,linux/arm/v7)"
required: false
nofallback:
description: "If true, fail the action if Blacksmith builder setup fails instead of falling back to local builder"
required: false
default: "false"
github-token:
description: "GitHub token for GitHub API access"
required: false
buildkit-version:
description: "BuildKit version to install (e.g., v0.16.0, v0.18.0). If not specified, uses system default"
required: false
skip-integrity-check:
description: "If true, skip the bbolt database integrity check"
required: false
default: "false"
driver-opts:
description: "List of additional driver-specific options (e.g., env.VARIABLE=value)"
required: false
max-parallelism:
description: "Maximum number of concurrent BuildKit RUN steps. Defaults to the number of vCPUs on the runner."
required: false
max-cache-size-mb:
description: "Amount of build cache to retain after pruning, in MB (e.g., 409600 for 400GB). If not set, pruning is skipped."
required: false
runs:
using: node24
main: dist/index.js
post: dist/index.js