From 6a178a0073644a839693830d5a72d3aeb5672efa Mon Sep 17 00:00:00 2001 From: tomeichlersmith Date: Fri, 15 Sep 2023 08:15:11 -0500 Subject: [PATCH] need to pass action output up into workflow --- .github/actions/validate/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/validate/action.yml b/.github/actions/validate/action.yml index ae7163719..a500f5731 100644 --- a/.github/actions/validate/action.yml +++ b/.github/actions/validate/action.yml @@ -22,6 +22,9 @@ outputs: hists: description: 'Generated Histogram File' value: ${{ steps.run-val.outputs.hists }} + log: + description: 'Generated Log File' + value: ${{ steps.run-val.outputs.log }} runs: using: 'composite'