28 lines
644 B
YAML
28 lines
644 B
YAML
name: 'Setup Docker Buildx Env'
|
|
description: 'Setup Docker Buildx Env and add it to the PATH.'
|
|
author: 'walker-sheng'
|
|
|
|
# Add your action's branding here. This will appear on the GitHub Marketplace.
|
|
branding:
|
|
icon: 'heart'
|
|
color: 'red'
|
|
|
|
# Define your inputs here.
|
|
inputs:
|
|
version:
|
|
description: 'The version to download (if necessary) and use.'
|
|
required: true
|
|
architecture:
|
|
description:
|
|
'Target architecture to use. Examples: x86, x64. Will use system
|
|
architecture by default.'
|
|
|
|
# Define your outputs here.
|
|
outputs:
|
|
version:
|
|
description: 'The installed version.'
|
|
|
|
runs:
|
|
using: node20
|
|
main: dist/index.js
|