Initial commit

This commit is contained in:
Dawid Dziurla
2019-11-18 13:05:04 +01:00
commit 5e251a5fdf
5 changed files with 49 additions and 0 deletions

12
action.yml Normal file
View File

@ -0,0 +1,12 @@
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 }}