summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/actions/composite-fail-with-output/action.yml
blob: 896022aa7989441749198c39082068041434969c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
outputs:
  customoutput:
    value: my-customoutput-${{ steps.random-color-generator.outputs.SELECTED_COLOR }}
runs:
  using: composite
  steps:
  - name: Set selected color
    run: echo '::set-output name=SELECTED_COLOR::green'
    id: random-color-generator
    shell: bash
  - name: fail
    run: exit 1
    shell: bash