You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm using Bamboo 8.2.
According to specs manual at https://docs.atlassian.com/bamboo-specs-docs/8.2.0/specs.html?yaml#using-a-shared-artifact-in-another-plan
I'd be able to build an artifact from PROJECTA_PLANA and use it from PROJECTB_PLANB.
Given the publish part shows artifacts actually in Bamboo web ui according to specs -- ie. the scripts artifact is present after build:
version: 2
plan:
project-key: PROJECTA
key: PLANA
..
Build:
artifacts:
- name: scripts
required: true
pattern: '*.sh'
shared: true
Trying to download fails with "Bamboo YAML import failed: Document structure is incorrect: Sandbox / tasks / [0]: Unknown task type artifact-download"
version: 2
deployment:
source-plan: PROJECTB_PLANB
..
Sandbox:
tasks:
- artifact-download:
source-plan: PROJECTA_PLANA
I've also tried variations according to manual in vain, for example:
version: 2
deployment:
source-plan: PROJECTB_PLANB
..
Sandbox:
tasks:
- artifact-download:
source-plan: PROJECTA_PLANA
artifacts:
- destination: ./scripts
name: scripts
How would I debug this issue further, please?