2020-11-13 15:53:21 +01:00
|
|
|
name: 'Push To Registry'
|
2020-11-07 13:04:04 +01:00
|
|
|
description: 'This action allows you to push an image to Quay'
|
2020-11-13 15:53:21 +01:00
|
|
|
author: 'Red Hat'
|
2020-11-07 13:04:04 +01:00
|
|
|
branding:
|
|
|
|
icon: circle
|
|
|
|
color: red
|
|
|
|
inputs:
|
2020-11-17 14:19:05 -05:00
|
|
|
image:
|
|
|
|
description: 'Name of the image to push'
|
2020-11-07 13:04:04 +01:00
|
|
|
required: true
|
2020-11-13 15:12:47 +01:00
|
|
|
tag:
|
2020-11-17 14:19:05 -05:00
|
|
|
description: 'Tag of the image to push'
|
2020-11-13 15:12:47 +01:00
|
|
|
required: false
|
|
|
|
default: 'latest'
|
|
|
|
registry:
|
2020-11-17 14:19:05 -05:00
|
|
|
description: 'Registry where to push the image (eg. quay.io/username)'
|
2020-11-07 13:04:04 +01:00
|
|
|
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
|
2020-11-23 18:11:35 -05:00
|
|
|
outputs:
|
|
|
|
image-url:
|
|
|
|
description: 'Complete URL of the pushed image'
|
2020-11-07 13:04:04 +01:00
|
|
|
runs:
|
|
|
|
using: 'node12'
|
2020-11-17 14:19:05 -05:00
|
|
|
main: 'dist/index.js'
|