Initial commit

This commit is contained in:
Dawid Dziurla
2020-03-21 16:36:23 +01:00
commit afff5c9738
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 }}