Change UNITY_PROJECT_PATH to PROJECT_PATH

pull/7/head
Webber 2019-12-14 18:10:55 +01:00
parent ae2ae7470f
commit bc53d72cef
2 changed files with 6 additions and 6 deletions

View File

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

View File

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