From 514fdac69a077d28da8ce2288df664c9b8148d27 Mon Sep 17 00:00:00 2001 From: Mark Ridgwell Date: Sat, 14 Dec 2024 21:07:28 +0000 Subject: [PATCH] [Actions] Updated .github/actions/dotnet-publish/action.yml --- .github/actions/dotnet-publish/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/dotnet-publish/action.yml b/.github/actions/dotnet-publish/action.yml index c6d2250c..11dbb4e7 100644 --- a/.github/actions/dotnet-publish/action.yml +++ b/.github/actions/dotnet-publish/action.yml @@ -29,7 +29,11 @@ runs: - name: "Dotnet: Check Variables" shell: bash run: | - [ -z "$PLATFORM" ] && echo "Missing Platform" && exit 1 + echo "Platform: $PLATFORM" + if [ -z "$PLATFORM" ]; then + echo "Missing Platform"; + exit 1 + fi env: PLATFORM: ${{inputs.PLATFORM}}