Change UNITY_PROJECT_PATH to PROJECT_PATH

pull/8/head
Webber 2019-12-14 18:10:55 +01:00 committed by Webber Takken
parent ae2ae7470f
commit 2bcc487a09
2 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@ jobs:
uses: ./
env:
TEST_MODE: all
UNITY_PROJECT_PATH: unity-project-with-correct-tests
PROJECT_PATH: unity-project-with-correct-tests
# Test implicit ARTIFACTS_PATH, by not setting it
# Upload artifacts
@ -54,7 +54,7 @@ jobs:
uses: ./
env:
TEST_MODE: editmode
UNITY_PROJECT_PATH: unity-project-with-correct-tests
PROJECT_PATH: unity-project-with-correct-tests
ARTIFACTS_PATH: artifacts/editmode
# Upload artifacts
@ -84,7 +84,7 @@ jobs:
uses: ./
env:
TEST_MODE: playmode
UNITY_PROJECT_PATH: unity-project-with-correct-tests
PROJECT_PATH: unity-project-with-correct-tests
ARTIFACTS_PATH: artifacts/editmode
# Upload artifacts
@ -113,7 +113,7 @@ jobs:
uses: ./
env:
TEST_MODE: editmode
UNITY_PROJECT_PATH: unity-project-with-correct-tests
PROJECT_PATH: unity-project-with-correct-tests
ARTIFACTS_PATH: artifacts/editmode
# Configure second test runner
@ -121,7 +121,7 @@ jobs:
uses: ./
env:
TEST_MODE: playmode
UNITY_PROJECT_PATH: unity-project-with-correct-tests
PROJECT_PATH: unity-project-with-correct-tests
ARTIFACTS_PATH: artifacts/playmode
# Upload combined artifacts

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Set the license file path
UNITY_PROJECT_PATH=$GITHUB_WORKSPACE/$UNITY_PROJECT_PATH
UNITY_PROJECT_PATH=$GITHUB_WORKSPACE/$PROJECT_PATH
# Set the artifacts path
if [ -z "$ARTIFACTS_PATH" ]; then