chore: update dist files
parent
9c34e1d230
commit
ad167ce06f
|
|
@ -264,6 +264,8 @@ class BuildParameters {
|
||||||
const buildVersion = yield versioning_1.default.determineVersion(input_1.default.versioningStrategy, input_1.default.specifiedVersion);
|
const buildVersion = yield versioning_1.default.determineVersion(input_1.default.versioningStrategy, input_1.default.specifiedVersion);
|
||||||
const androidVersionCode = android_versioning_1.default.determineVersionCode(buildVersion, input_1.default.androidVersionCode);
|
const androidVersionCode = android_versioning_1.default.determineVersionCode(buildVersion, input_1.default.androidVersionCode);
|
||||||
const androidSdkManagerParameters = android_versioning_1.default.determineSdkManagerParameters(input_1.default.androidTargetSdkVersion);
|
const androidSdkManagerParameters = android_versioning_1.default.determineSdkManagerParameters(input_1.default.androidTargetSdkVersion);
|
||||||
|
// Todo - Don't use process.env directly, that's what the input model class is for.
|
||||||
|
// ---
|
||||||
let unitySerial = '';
|
let unitySerial = '';
|
||||||
if (!process.env.UNITY_SERIAL) {
|
if (!process.env.UNITY_SERIAL) {
|
||||||
//No serial was present so it is a personal license that we need to convert
|
//No serial was present so it is a personal license that we need to convert
|
||||||
|
|
@ -279,6 +281,7 @@ class BuildParameters {
|
||||||
unitySerial = process.env.UNITY_SERIAL;
|
unitySerial = process.env.UNITY_SERIAL;
|
||||||
}
|
}
|
||||||
core.setSecret(unitySerial);
|
core.setSecret(unitySerial);
|
||||||
|
// ---
|
||||||
return {
|
return {
|
||||||
version: unityVersion,
|
version: unityVersion,
|
||||||
customImage: input_1.default.customImage,
|
customImage: input_1.default.customImage,
|
||||||
|
|
@ -3949,14 +3952,14 @@ class Input {
|
||||||
return Input.getInput('androidKeyaliasPass') || '';
|
return Input.getInput('androidKeyaliasPass') || '';
|
||||||
}
|
}
|
||||||
static get androidTargetSdkVersion() {
|
static get androidTargetSdkVersion() {
|
||||||
return core.getInput('androidTargetSdkVersion') || '';
|
return Input.getInput('androidTargetSdkVersion') || '';
|
||||||
}
|
}
|
||||||
static get sshAgent() {
|
static get sshAgent() {
|
||||||
return Input.getInput('sshAgent') || '';
|
return Input.getInput('sshAgent') || '';
|
||||||
}
|
}
|
||||||
static gitPrivateToken() {
|
static gitPrivateToken() {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
return core.getInput('gitPrivateToken') || (yield Input.githubToken());
|
return Input.getInput('gitPrivateToken') || (yield Input.githubToken());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
static get chownFilesTo() {
|
static get chownFilesTo() {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue