add missing files for the action

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>
This commit is contained in:
Luca Stocchi 2020-11-06 22:48:47 +01:00
parent 7cfe2a742f
commit ce541b4331
No known key found for this signature in database
GPG key ID: 930BB00F3FCF30A4
8 changed files with 3989 additions and 3 deletions

25
action.yml Normal file
View file

@ -0,0 +1,25 @@
name: 'Test Action'
description: 'This action allows you to build an image from your app'
author: 'Luca'
branding:
icon: circle
color: red
inputs:
new-image-name:
description: 'Name of the new image that will be created'
required: true
base-image:
description: 'Base image to use'
required: false
content:
description: 'The content to copy inside the base image'
required: true
entrypoint:
description: 'Entrypoint'
required: true
port:
description: 'Port'
required: false
runs:
using: 'node12'
main: 'dist/index.js'