diff --git a/helmfile-actions/action.yml b/helmfile-actions/action.yml index 906b41f..5f52f6e 100644 --- a/helmfile-actions/action.yml +++ b/helmfile-actions/action.yml @@ -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: diff --git a/terraform-actions/action.yml b/terraform-actions/action.yml index d4044e4..dc2b5ac 100644 --- a/terraform-actions/action.yml +++ b/terraform-actions/action.yml @@ -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: