Bamboo Atlassian: How to share a variable between stages
问题 I am relatively new to Bamboo . I have a question regarding stages implementation with shared variable. I have two stages: Stage 1: Set variable "Sample_build_number" Stage 2: Use variable "Sample_build_number" Any help with this is very much appreciated. 回答1: You can write your variables to a simple property file in Stage 1, and share the property file as an artifact. Sample_build_number=myvalue In your Stage 2 job use the Inject Bamboo variables task to read the property file. Your variable