Skip to content

Commit

Permalink
fix(terraform/helmfile): use correct output names (#34)
Browse files Browse the repository at this point in the history
This should ammend #33 to actually bubble the output values up to the caller
  • Loading branch information
marcind authored Sep 3, 2020
1 parent f734422 commit a421e28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions helmfile-actions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ inputs:
outputs:
diff-output:
description: "The Helmfile diff command output"
value: ${{ steps.main.outputs.output }}
value: ${{ steps.main.outputs.diff-output }}
diff-has-changes:
description: "Whether the diff contained changes"
value: ${{ steps.main.outputs.has-changes }}
value: ${{ steps.main.outputs.diff-has-changes }}
runs:
using: "composite"
steps:
Expand Down
4 changes: 2 additions & 2 deletions terraform-actions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ inputs:
outputs:
plan-output:
description: "The Terraform plan command output"
value: ${{ steps.main.outputs.output }}
value: ${{ steps.main.outputs.plan-output }}
plan-has-changes:
description: "Whether the plan contained changes"
value: ${{ steps.main.outputs.has-changes }}
value: ${{ steps.main.outputs.plan-has-changes }}
runs:
using: "composite"
steps:
Expand Down

0 comments on commit a421e28

Please sign in to comment.