container-action/action.yml
2023-09-01 14:47:27 -04:00

22 lines
458 B
YAML

name: 'The name of your action here'
description: 'Provide a description here'
author: 'Your name or organization here'
# Define your inputs here.
inputs:
who-to-greet:
description: 'Your input description here'
required: true
default: 'World'
# Define your outputs here.
outputs:
greeting:
description: 'Your output description here'
runs:
using: docker
image: Dockerfile
env:
INPUT_WHO_TO_GREET: ${{ inputs.who-to-greet }}