correcting bug with async env

pull/496/head
Frostebite 2023-01-22 02:03:16 +00:00
parent 1a0fd35c82
commit 994563aa5d
4 changed files with 3 additions and 6 deletions

View File

@ -76,7 +76,6 @@ jobs:
if: matrix.CloudRunnerCluster != 'local-docker'
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
PROJECT_PATH: test-project
TARGET_PLATFORM: StandaloneWindows64
cloudRunnerTests: true
versioning: None
@ -122,8 +121,6 @@ jobs:
with:
cloudRunnerTests: true
versioning: None
projectPath: test-project
gitPrivateToken: ${{ secrets.GIT_PRIVATE_TOKEN }}
targetPlatform: ${{ matrix.targetPlatform }}
cloudRunnerCluster: ${{ matrix.cloudRunnerCluster }}
- run: |

2
dist/index.js generated vendored
View File

@ -7212,7 +7212,7 @@ class Input {
return Input.getInput('sshAgent') || '';
}
static get gitPrivateToken() {
return core.getInput('gitPrivateToken') || false;
return Input.getInput('gitPrivateToken') || false;
}
static get chownFilesTo() {
return Input.getInput('chownFilesTo') || '';

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -168,7 +168,7 @@ class Input {
}
static get gitPrivateToken() {
return core.getInput('gitPrivateToken') || false;
return Input.getInput('gitPrivateToken') || false;
}
static get chownFilesTo() {