mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00
fix
This commit is contained in:
parent
37339385bd
commit
5206ee7a3c
@ -45,6 +45,7 @@ jobs:
|
|||||||
- 'cloud-runner-remote-client'
|
- 'cloud-runner-remote-client'
|
||||||
- 'cloud-runner-caching'
|
- 'cloud-runner-caching'
|
||||||
- 'cloud-runner-environment'
|
- 'cloud-runner-environment'
|
||||||
|
- 'cloud-runner-image'
|
||||||
- 'cloud-runner-hooks'
|
- 'cloud-runner-hooks'
|
||||||
- 'cloud-runner-local-persistence'
|
- 'cloud-runner-local-persistence'
|
||||||
- 'cloud-runner-locking-core'
|
- 'cloud-runner-locking-core'
|
||||||
@ -76,8 +77,7 @@ jobs:
|
|||||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
GIT_PRIVATE_TOKEN: ${{ secrets.GIT_PRIVATE_TOKEN }}
|
GIT_PRIVATE_TOKEN: ${{ secrets.GIT_PRIVATE_TOKEN }}
|
||||||
GITHUB_TOKEN:
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
${{ secrets.GITHUB_TOKEN }}
|
|
||||||
k8sTests:
|
k8sTests:
|
||||||
name: K8s Tests
|
name: K8s Tests
|
||||||
if: github.event.event_type != 'pull_request_target'
|
if: github.event.event_type != 'pull_request_target'
|
||||||
|
BIN
dist/index.js
generated
vendored
BIN
dist/index.js
generated
vendored
Binary file not shown.
BIN
dist/index.js.map
generated
vendored
BIN
dist/index.js.map
generated
vendored
Binary file not shown.
@ -44,5 +44,8 @@ describe('Cloud Runner Image', () => {
|
|||||||
if (baseImage.toString().includes('undefined')) {
|
if (baseImage.toString().includes('undefined')) {
|
||||||
throw new Error(`Base image ${baseImage.toString()} includes undefined`);
|
throw new Error(`Base image ${baseImage.toString()} includes undefined`);
|
||||||
}
|
}
|
||||||
|
if (baseImage.toString().includes('NaN')) {
|
||||||
|
throw new Error(`Base image ${baseImage.toString()} includes nan`);
|
||||||
|
}
|
||||||
}, 1_000_000_000);
|
}, 1_000_000_000);
|
||||||
});
|
});
|
||||||
|
@ -265,7 +265,7 @@ class Input {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static get containerRegistryImageVersion(): string {
|
static get containerRegistryImageVersion(): string {
|
||||||
return Input.getInput('containerRegistryImageVersion')!;
|
return Input.getInput('containerRegistryImageVersion') || '3';
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ToEnvVarFormat(input: string) {
|
public static ToEnvVarFormat(input: string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user