Permalink
Cannot retrieve contributors at this time
67 lines (64 sloc)
1.97 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
docker-buildx-action/action.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: | |
description: 'Buildx version. (eg. v0.3.0)' | |
required: false | |
driver: | |
description: 'Sets the builder driver to be used' | |
default: 'docker-container' | |
required: false | |
driver-opts: | |
description: 'List of additional driver-specific options. (eg. image=moby/buildkit:master)' | |
required: false | |
buildkitd-flags: | |
description: 'Flags for buildkitd daemon' | |
default: '--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host' | |
required: false | |
install: | |
description: 'Sets up docker build command as an alias to docker buildx build' | |
default: 'false' | |
required: false | |
use: | |
description: 'Switch to this builder instance' | |
default: 'true' | |
required: false | |
endpoint: | |
description: 'Optional address for docker socket or context from `docker context ls`' | |
required: false | |
platforms: | |
description: 'Fixed platforms for current node. If not empty, values take priority over the detected ones' | |
required: false | |
config: | |
description: 'BuildKit config file' | |
required: false | |
config-inline: | |
description: 'Inline BuildKit config' | |
required: false | |
append: | |
description: 'Append additional nodes to the builder' | |
required: false | |
outputs: | |
name: | |
description: 'Builder name' | |
driver: | |
description: 'Builder driver' | |
platforms: | |
description: 'Builder node platforms (preferred or available)' | |
nodes: | |
description: 'Builder nodes metadata' | |
endpoint: | |
description: 'Builder node endpoint (deprecated, use nodes output instead)' | |
status: | |
description: 'Builder node status (deprecated, use nodes output instead)' | |
flags: | |
description: 'Builder node flags (deprecated, use nodes output instead)' | |
runs: | |
using: 'node16' | |
main: 'dist/index.js' | |
post: 'dist/index.js' |