Hello everyone,
My pipeline is as follows:
get_tags:
image: ubuntu
commands:
- echo “5.2.6” > .tags
- echo “5.2.4” > .tags
publish:
image: plugins/docker
context: Docker
dockerfile: Docker/Dockerfile
default_tags: true
default_suffix: commit
How is possible to tag image from .tags file with multiple tags?
In this situation, first one will be overwriten, and i tried with:
- echo "5.2.6" > .tags
- echo "5.2.4" >> .tags
and:
- echo "5.2.6;" > .tags
- echo "5.2.4" > .tags
In those situations, pipeline fails.