Reputation: 1544
I need write a new Bamboo plan which would run on an adhoc basis and eventually deploy specific version of artifact (specific build number to be precise) on specific targeted environment, for instance Test or QA environment. There is already an existing Bamboo plan which runs automatically (whenever PR gets approved and merged with master) and generates a specific version of docker image(specific build number) that gets deployed on Dev environment. Some how I need to share this specific build number (artifact version) across with my new Bamboo plan so that the new Bamboo need not have generate the artifact all over again but just search it from Artificatory (based on build number) and deploys on Test/QA environment. What is the best approach of keeping the build number? Like putting into global variables or write it into some files and read it from there.
Upvotes: 1
Views: 870
Reputation: 891
You could:
Upvotes: 3