github.com/chenbh/concourse/v6@v6.4.2/testflight/fixtures/task-outputs.yml (about)

     1  ---
     2  jobs:
     3  - name: some-job
     4    plan:
     5    - task: output-producer
     6      config:
     7        platform: linux
     8        image_resource:
     9          type: mock
    10          source: {mirror_self: true}
    11        outputs:
    12        - name: output-1
    13          path: output-1-src/
    14        - name: output-2
    15          path: output-2-src/
    16        run:
    17          path: sh
    18          args:
    19          - -c
    20          - |
    21            touch output-1-src/file-1
    22            touch output-2-src/file-2
    23    - task: find-files
    24      config:
    25        platform: linux
    26        image_resource:
    27          type: mock
    28          source: {mirror_self: true}
    29        inputs:
    30        - name: output-1
    31        - name: output-2
    32        run:
    33          path: find
    34          args: [.]