mirror of https://github.com/nektos/act
13 lines
335 B
YAML
13 lines
335 B
YAML
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 |