Fix typo
All checks were successful
Composite Actions Test / Test job (push) Successful in 5s

This commit is contained in:
David Boreham 2024-06-14 13:04:51 -06:00
parent 9c0d874cad
commit 8fa8e0ba58

View File

@ -8,11 +8,12 @@ inputs:
outputs:
output-one:
description: 'The output'
value: ${{ steps.second-step.outputs.output-one }}
value: ${{ steps.first-step.outputs.output-one }}
runs:
using: 'composite'
steps:
- name: 'First step'
id: first-step
run: |
echo "First step here. Param 1 is - ${{ inputs.param1 }}"
echo "output-one=this is my output" >> $GITHUB_OUTPUT