mirror of
https://github.com/docker/build-push-action.git
synced 2025-06-29 20:44:15 +00:00
Add setup-buildx action (#71)
This commit is contained in:
parent
836357fa9e
commit
64ca6397e9
20 changed files with 11923 additions and 0 deletions
26
setup-buildx/action.yml
Normal file
26
setup-buildx/action.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
||||
name: 'Docker - Setup Buildx'
|
||||
description: 'GitHub Action to set up Docker Buildx'
|
||||
author: 'crazy-max'
|
||||
branding:
|
||||
color: 'blue'
|
||||
icon: 'truck'
|
||||
|
||||
inputs:
|
||||
buildx-version:
|
||||
description: 'Buildx version. Example: v0.3.0'
|
||||
default: 'latest'
|
||||
required: false
|
||||
install:
|
||||
description: 'Sets up docker build command as an alias to docker buildx'
|
||||
default: 'false'
|
||||
required: false
|
||||
|
||||
outputs:
|
||||
platforms:
|
||||
description: 'Available platforms (comma separated)'
|
||||
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: 'dist/index.js'
|
||||
post: 'dist/index.js'
|
Loading…
Add table
Add a link
Reference in a new issue