2020-08-07 05:05:37 -04:00
|
|
|
# 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:
|
2020-08-11 15:49:46 -04:00
|
|
|
image:
|
2020-08-12 08:07:04 -04:00
|
|
|
description: 'QEMU static binaries Docker image. e.g. tonistiigi/binfmt:latest'
|
2020-08-11 15:49:46 -04:00
|
|
|
default: 'tonistiigi/binfmt:latest'
|
|
|
|
required: false
|
|
|
|
platforms:
|
2020-08-12 08:07:04 -04:00
|
|
|
description: 'Platforms to install. e.g. arm64,riscv64,arm'
|
2020-08-11 15:49:46 -04:00
|
|
|
default: 'all'
|
2020-08-07 05:05:37 -04:00
|
|
|
required: false
|
|
|
|
|
2020-08-11 19:48:35 -04:00
|
|
|
outputs:
|
|
|
|
platforms:
|
|
|
|
description: 'Available platforms (comma separated)'
|
|
|
|
|
2020-08-07 05:05:37 -04:00
|
|
|
runs:
|
|
|
|
using: 'node12'
|
|
|
|
main: 'dist/index.js'
|