Initial commit

This commit is contained in:
Danny McCormick
2019-08-01 18:04:11 +00:00
commit 13a6fbf7d9
5 changed files with 55 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 }}