Skip to content

Commit

Permalink
[Actions] Updated .github/actions/dotnet-publish/action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
credfeto committed Dec 14, 2024
1 parent 3ecf4e4 commit 514fdac
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/dotnet-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}

Expand Down

0 comments on commit 514fdac

Please sign in to comment.