tag-manifest/action.yaml
2023-08-18 20:10:28 -07:00

19 lines
527 B
YAML

name: Docker Tag
description: Tags an existing container manifest in a remote registry without pulling/pushing any images
runs:
using: node16
main: main.js
inputs:
registry:
description: URL to the container registry
required: true
image:
description: The name of the image in the registry
required: true
old-tag:
description: The tag of the existing image to be re-tagged
required: true
new-tags:
description: Newline delimited list of new tags to apply to the image
required: true