Add output

This commit is contained in:
Ana Hobden 2023-07-13 09:18:31 -07:00
parent 27df44f1c8
commit 546f09255a

View file

@ -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