mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
e9cb922263
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
25 lines
610 B
YAML
25 lines
610 B
YAML
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
|
name: 'Docker Setup QEMU'
|
|
description: 'Install QEMU static binaries'
|
|
author: 'docker'
|
|
branding:
|
|
icon: 'anchor'
|
|
color: 'blue'
|
|
|
|
inputs:
|
|
image:
|
|
description: 'QEMU static binaries Docker image. e.g. tonistiigi/binfmt:latest'
|
|
default: 'tonistiigi/binfmt:latest'
|
|
required: false
|
|
platforms:
|
|
description: 'Platforms to install. e.g. arm64,riscv64,arm'
|
|
default: 'all'
|
|
required: false
|
|
|
|
outputs:
|
|
platforms:
|
|
description: 'Available platforms (comma separated)'
|
|
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/index.js'
|