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

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