2020-11-13 15:53:21 +01:00
|
|
|
name: 'Push To Registry'
|
2020-11-28 00:23:19 +05:30
|
|
|
description: 'Push a container image to an image registry'
|
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-27 11:44:15 +05:30
|
|
|
tls-verify:
|
|
|
|
description: 'Verify TLS certificates when contacting the registry'
|
|
|
|
required: false
|
|
|
|
default: 'true'
|
|
|
|
|
2020-11-23 18:11:35 -05:00
|
|
|
outputs:
|
2020-11-27 11:44:15 +05:30
|
|
|
registry-path:
|
|
|
|
description: 'The registry path to which the image was pushed'
|
2020-11-07 13:04:04 +01:00
|
|
|
runs:
|
|
|
|
using: 'node12'
|
2020-11-17 14:19:05 -05:00
|
|
|
main: 'dist/index.js'
|