From 8e0b824ca9e3c4b72b77bc2fd62ed91bc3b39947 Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Mon, 17 Jan 2022 14:45:35 -0500 Subject: [PATCH] spelling and documentation fixes --- .github/workflows/main.yml | 2 +- action.yml | 2 +- dist/steps/run_tests.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c826022..a517506 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -294,7 +294,7 @@ jobs: projectPath: ${{ matrix.projectPath }} unityVersion: ${{ matrix.unityVersion }} testMode: editmode - artifactsPath: artifacts/editmode + artifactsPath: artifacts/packageeditmode packageMode: true # Upload artifacts diff --git a/action.yml b/action.yml index aad041c..6f3f522 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: unityVersion: required: false default: 'auto' - description: 'Version of unity to use for testing the project. Use "auto" to get from your ProjectSettings/ProjectVersion.txt' + description: 'Version of unity to use for testing the project. Use "auto" to get from your ProjectSettings/ProjectVersion.txt. Required if using Package Mode.' customImage: required: false default: '' diff --git a/dist/steps/run_tests.sh b/dist/steps/run_tests.sh index 05d0d5c..4389bf1 100755 --- a/dist/steps/run_tests.sh +++ b/dist/steps/run_tests.sh @@ -40,7 +40,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then echo "Creating an empty Unity project to add the package to." unity-editor \ - -batchMode \ + -batchmode \ -createProject "./TempProject" \ -quit