From 46f7aa22d217d140b381708d456ab45ad1625432 Mon Sep 17 00:00:00 2001 From: Scion Date: Sat, 5 Aug 2023 23:21:16 -0700 Subject: [PATCH] test --- unity-command/action.yaml | 3 ++- unity-default/action.yaml | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/unity-command/action.yaml b/unity-command/action.yaml index 96177d7..1afbb9d 100644 --- a/unity-command/action.yaml +++ b/unity-command/action.yaml @@ -62,7 +62,8 @@ runs: id: command run: | COMMAND="${{ inputs.command }}" - if [[ "{{ inputs.noGraphics }}" == "false" ]]; then + echo "NO GRAPHICS: ${{ inputs.noGraphics }}" + if [[ "{{ inputs.noGraphics }}" == "true" ]]; then COMMAND="-nographics $COMMAND" fi echo "command=$COMMAND" >> "$GITHUB_OUTPUT" diff --git a/unity-default/action.yaml b/unity-default/action.yaml index b55242c..2a04ff7 100644 --- a/unity-default/action.yaml +++ b/unity-default/action.yaml @@ -44,6 +44,8 @@ inputs: runs: using: "composite" steps: + - run: | + echo "NO GRAPHICS: ${{ inputs.noGraphics }}" - uses: act/unity/unity-composite@master with: platform: ${{ inputs.platform }}