Skip to content

Commit

Permalink
fix: Outputs have wrong value cause syntax was incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
bmiller08 committed Jan 12, 2022
1 parent 7c5e22c commit 97e432f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ inputs:
outputs:
patch_created:
description: 'Were changes made?'
value: patch_created
value: ${{ steps.create_patch.outputs.patch_created }}
build_conclusion:
description: 'Did the post change build succeed?'
value: build_conclusion
value: ${{ steps.build.outputs.build_conclusion }}
runs:
using: 'composite'
steps:
Expand Down

0 comments on commit 97e432f

Please sign in to comment.