mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 16:55:48 -05:00
18 lines
419 B
YAML
18 lines
419 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:
|
||
|
qemu-version:
|
||
|
description: 'QEMU static binaries Docker image version. Example: 4.2.0-7'
|
||
|
default: 'latest'
|
||
|
required: false
|
||
|
|
||
|
runs:
|
||
|
using: 'node12'
|
||
|
main: 'dist/index.js'
|