23 lines
431 B
YAML
23 lines
431 B
YAML
name: 'Setup docker cli'
|
|
description: 'setup docker cli env'
|
|
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: '需安装的docker版本'
|
|
|
|
# Define your outputs here.
|
|
outputs:
|
|
version:
|
|
description: '安装的docker版本'
|
|
|
|
runs:
|
|
using: node20
|
|
main: dist/index.js
|