From 13407759f674d5a85654211077eb1596d20f1000 Mon Sep 17 00:00:00 2001 From: Mark Ridgwell Date: Sat, 14 Dec 2024 18:03:37 +0000 Subject: [PATCH] [Actions] Updated .github/actions/dotnet-publish/action.yml --- .github/actions/dotnet-publish/action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/dotnet-publish/action.yml b/.github/actions/dotnet-publish/action.yml index b493d3eb..c6d2250c 100644 --- a/.github/actions/dotnet-publish/action.yml +++ b/.github/actions/dotnet-publish/action.yml @@ -29,8 +29,7 @@ runs: - name: "Dotnet: Check Variables" shell: bash run: | - [ -z "$PLATFORM" ] || echo "Missing Platform" && exit 1 - [ -z "$PLATFORM" ] || exit 1 + [ -z "$PLATFORM" ] && echo "Missing Platform" && exit 1 env: PLATFORM: ${{inputs.PLATFORM}}