mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-05-04 04:09:54 +02:00
Add verify bundle action and make inputs 'required'
Signed-off-by: Tim Etchells <tetchell@redhat.com>
This commit is contained in:
parent
05f033c95a
commit
61095317bf
8 changed files with 86 additions and 18 deletions
10
action.yml
10
action.yml
|
@ -5,15 +5,15 @@ branding:
|
|||
icon: circle
|
||||
color: red
|
||||
inputs:
|
||||
image-to-push:
|
||||
description: 'Name of the new image that will be pushed'
|
||||
image:
|
||||
description: 'Name of the image to push'
|
||||
required: true
|
||||
tag:
|
||||
description: 'Tag of the new image'
|
||||
description: 'Tag of the image to push'
|
||||
required: false
|
||||
default: 'latest'
|
||||
registry:
|
||||
description: 'Registry where to push the image (e.g quay.io/username)'
|
||||
description: 'Registry where to push the image (eg. quay.io/username)'
|
||||
required: true
|
||||
username:
|
||||
description: 'Username to use as credential to authenticate to the registry'
|
||||
|
@ -23,4 +23,4 @@ inputs:
|
|||
required: true
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: 'dist/index.js'
|
||||
main: 'dist/index.js'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue