mirror of
https://github.com/actions/container-action.git
synced 2025-06-14 17:27:42 +00:00
13 lines
255 B
YAML
13 lines
255 B
YAML
name: 'Container Action Template'
|
|
description: 'Get started with Container actions'
|
|
author: 'GitHub'
|
|
inputs:
|
|
myInput:
|
|
description: 'Input to use'
|
|
default: 'world'
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.myInput }}
|