2020-08-18 22:40:31 +07:00
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name : 'Docker Setup Buildx'
description : 'Set up Docker Buildx'
author : 'docker'
branding :
icon : 'anchor'
color : 'blue'
inputs :
version :
2020-09-06 21:37:52 +07:00
description : 'Buildx version. (eg. v0.3.0)'
2020-08-18 22:40:31 +07:00
required : false
driver :
description : 'Sets the builder driver to be used'
default : 'docker-container'
required : false
2020-09-03 21:23:15 +07:00
driver-opts :
2020-09-06 21:37:52 +07:00
description : 'List of additional driver-specific options. (eg. image=moby/buildkit:master)'
2020-08-18 22:40:31 +07:00
required : false
buildkitd-flags :
description : 'Flags for buildkitd daemon'
2020-09-04 01:38:04 +07:00
default : '--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host'
2020-08-18 22:40:31 +07:00
required : false
install :
2022-05-27 05:18:23 +07:00
description : 'Sets up docker build command as an alias to docker buildx build'
2020-08-18 22:40:31 +07:00
default : 'false'
required : false
use :
description : 'Switch to this builder instance'
default : 'true'
required : false
2020-09-08 20:52:09 +07:00
endpoint :
2020-09-08 23:22:35 +07:00
description : 'Optional address for docker socket or context from `docker context ls`'
2020-09-06 21:37:52 +07:00
required : false
2022-09-22 16:54:00 +07:00
platforms :
description : 'Fixed platforms for current node. If not empty, values take priority over the detected ones'
required : false
2021-04-22 00:37:54 +07:00
config :
2021-04-23 23:14:38 +07:00
description : 'BuildKit config file'
2021-04-22 00:37:54 +07:00
required : false
2021-09-04 03:21:20 +07:00
config-inline :
description : 'Inline BuildKit config'
required : false
2022-09-19 16:34:47 +07:00
append :
description : 'Append additional nodes to the builder'
required : false
2023-03-03 17:56:21 +07:00
cleanup :
description : 'Cleanup temp files and remove builder at the end of a job'
default : 'true'
2023-02-24 04:11:05 +07:00
keep-state :
description : 'Keep state on cleanup'
default : 'false'
required : false
name :
description : 'Builder name use use when creating the builder. If not specified, one will be generated. Specifying a name enables reusing a buildkit volume in persistent self-hosted runners.'
2023-03-03 17:56:21 +07:00
required : false
2020-08-18 22:40:31 +07:00
outputs :
name :
2021-04-23 23:14:38 +07:00
description : 'Builder name'
driver :
description : 'Builder driver'
2022-09-18 07:24:38 +07:00
platforms :
description : 'Builder node platforms (preferred or available)'
nodes :
description : 'Builder nodes metadata'
2021-04-23 23:14:38 +07:00
endpoint :
2022-09-18 07:24:38 +07:00
description : 'Builder node endpoint (deprecated, use nodes output instead)'
2021-04-23 23:14:38 +07:00
status :
2022-09-18 07:24:38 +07:00
description : 'Builder node status (deprecated, use nodes output instead)'
2021-04-23 23:14:38 +07:00
flags :
2022-09-18 07:24:38 +07:00
description : 'Builder node flags (deprecated, use nodes output instead)'
2020-08-18 22:40:31 +07:00
runs :
2022-03-21 19:50:20 +07:00
using : 'node16'
2020-08-18 22:40:31 +07:00
main : 'dist/index.js'
post : 'dist/index.js'