github.com/devtron-labs/ci-runner@v0.0.0-20240518055909-b2672f3349d7/devtron-cd.yaml (about)

     1  version: 0.0.1
     2  cdPipelineConf:
     3    - beforeStages:
     4        - name: "test-1"
     5          script: |
     6            date > test.report
     7            echo 'hello'
     8          outputLocation: "./test.report"
     9        - name: "test-2"
    10          script: |
    11            date > test2.report
    12          outputLocation: "./test2.report"
    13    - afterStages:
    14        - name: "test-1"
    15          script: |
    16            date > test.report
    17            echo 'hello'
    18          outputLocation: "./test.report"
    19        - name: "test-2"
    20          script: |
    21            date > test2.report
    22          outputLocation: "./test2.report"