Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKahr committed Dec 11, 2023
1 parent 33280cf commit b9d4656
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions src/model/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ class Input {
const unityLicensingServer = getInput('unityLicensingServer') || '';
const unityLicense = getInput('unityLicense') || (process.env['UNITY_LICENSE'] ?? '');
let unitySerial = process.env['UNITY_SERIAL'] ?? '';
if (unitySerial === '') {
core.info('Unity Serial Unset');
}

if (unityLicense === '') {
core.info('Unity License Unset');
}
const customParameters = getInput('customParameters') || '';
const testMode = (getInput('testMode') || 'all').toLowerCase();
const coverageOptions = getInput('coverageOptions') || '';
Expand Down Expand Up @@ -187,6 +194,7 @@ class Input {
serial number inside the UNITY_SERIAL GitHub secret.`,
);
}
core.info('Decoding license');
unitySerial = this.getSerialFromLicenseFile(unityLicense);
}

Expand Down

0 comments on commit b9d4656

Please sign in to comment.