forked from waja/action-debian-package
13 lines
256 B
YAML
13 lines
256 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 }}
|