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