From 546f09255a3249e914b8160200152374e083db0d Mon Sep 17 00:00:00 2001 From: Ana Hobden Date: Thu, 13 Jul 2023 09:18:31 -0700 Subject: [PATCH] Add output --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index 662282e..c6c46db 100644 --- a/action.yml +++ b/action.yml @@ -313,11 +313,14 @@ runs: if [ -n "${{ inputs.planner }}" ]; then export PLANNER="${{ inputs.planner }}" + echo "Set PLANNER=$PLANNER" else if [ "${RUNNER_OS}" == "Linux" ]; then export PLANNER="linux" + echo "Set PLANNER=$PLANNER (Default)" elif [ "${RUNNER_OS}" == "macOS" ]; then export PLANNER="macos" + echo "Set PLANNER=$PLANNER (Default)" else echo "${RUNNER_OS} not supported" exit 1