github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/image/example3.yaml.golden (about) 1 { 2 "image": "bash:latest", 3 "pipelines": { 4 "default": [ 5 { 6 "step": { 7 "name": "Step using the Bash image", 8 "script": [ 9 "bash --version" 10 ] 11 } 12 }, 13 { 14 "step": { 15 "name": "Step using the default Bitbucket Pipelines image", 16 "image": "atlassian/default-image:latest", 17 "script": [ 18 "echo \"Hello, World from the default Pipelines image\"" 19 ] 20 } 21 } 22 ] 23 } 24 }