diff --git a/.github/actions/dotnet-publish/action.yml b/.github/actions/dotnet-publish/action.yml index c6d2250..11dbb4e 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}}