first implementation push to quay action

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>
This commit is contained in:
Luca Stocchi 2020-11-07 13:04:04 +01:00
commit 9a0a0927cd
No known key found for this signature in database
GPG key ID: 930BB00F3FCF30A4
11 changed files with 4046 additions and 0 deletions

22
action.yml Normal file
View file

@ -0,0 +1,22 @@
name: 'Lucas Test Push To Quay Action'
description: 'This action allows you to push an image to Quay'
author: 'Luca'
branding:
icon: circle
color: red
inputs:
image-to-push:
description: 'Name of the new image that will be pushed'
required: true
quay-registry:
description: 'Quay repo where to push the image'
required: true
username:
description: 'Username to use as credential to authenticate to the registry'
required: true
password:
description: 'Password to use as credential to authenticate to the registry'
required: true
runs:
using: 'node12'
main: 'dist/index.js'