github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/testdata/image/example3.yaml.golden (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build
     5      spec:
     6        steps:
     7        - name: Step using the Bash image
     8          spec:
     9            image: bash:latest
    10            run: bash --version
    11          type: script
    12        - name: Step using the default Bitbucket Pipelines image
    13          spec:
    14            image: atlassian/default-image:latest
    15            run: echo "Hello, World from the default Pipelines image"
    16          type: script
    17      type: ci
    18  version: 1