25 lines
775 B
YAML
25 lines
775 B
YAML
name: Tag Manifest
|
|
description: Tags an existing container manifest in a remote registry without pulling/pushing any images
|
|
runs:
|
|
using: node16
|
|
main: dist/index.js
|
|
inputs:
|
|
registry:
|
|
description: URL to the container registry
|
|
required: true
|
|
insecure:
|
|
description: If "true", will use HTTP rather than HTTPS
|
|
required: false
|
|
username:
|
|
description: Username to use to authenticate to the container registry
|
|
required: false
|
|
password:
|
|
description: Password to use to authenticate to the container registry
|
|
required: false
|
|
manifest:
|
|
description: The name/tag of the existing manifest in the registry
|
|
required: true
|
|
tags:
|
|
description: Newline or comma delimited list of new tags to apply to the manifest
|
|
required: true
|