github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/yaml/testdata/tutorial/example2.yaml.golden (about)

     1  version: "2.1"
     2  jobs:
     3    build:
     4      docker:
     5        - image: cimg/base:2021.04
     6          auth:
     7            username: mydockerhub-user
     8            password: $DOCKERHUB_PASSWORD  # context / project UI env-var reference
     9      steps:
    10        - checkout: {}
    11        - run:
    12            name: The First Step
    13            command: |
    14              echo 'Hello World!'
    15              echo 'This is the delivery pipeline'
    16        - run:
    17            name: The Second Step
    18            command: |
    19              ls -al
    20              echo '^^^The files in your repo^^^'
    21  
    22  workflows:
    23    Example-Workflow:
    24      jobs:
    25        - build