@@ -29981,7 +29981,7 @@ const getTestStatus = (uploadId, apiKey, apiUrl) => __awaiter(void 0, void 0, vo
2998129981const run = () => __awaiter(void 0, void 0, void 0, function* () {
2998229982 var _a;
2998329983 try {
29984- const { additionalAppBinaryIds, additionalAppFiles, androidApiLevel, androidDevice, apiKey, apiUrl, appBinaryId, appFilePath, async, config, deviceLocale, downloadArtifacts, env, excludeFlows, excludeTags, googlePlay, ignoreShaCheck, includeTags, iOSVersion, iosDevice, jsonFile, maestroVersion, name, orientation, report, retry, workspaceFolder, x86Arch, runnerType, skipChromeOnboarding, } = yield (0, params_1.getParameters)();
29984+ const { additionalAppBinaryIds, additionalAppFiles, androidApiLevel, androidDevice, apiKey, apiUrl, appBinaryId, appFilePath, async, config, deviceLocale, downloadArtifacts, env, excludeFlows, excludeTags, googlePlay, ignoreShaCheck, includeTags, iOSVersion, iosDevice, jsonFile, maestroVersion, name, orientation, report, retry, workspaceFolder, x86Arch, runnerType, skipChromeOnboarding, moropoV1ApiKey, } = yield (0, params_1.getParameters)();
2998529985 const params = {
2998629986 'additional-app-binary-ids': additionalAppBinaryIds,
2998729987 'additional-app-files': additionalAppFiles,
@@ -30012,6 +30012,7 @@ const run = () => __awaiter(void 0, void 0, void 0, function* () {
3001230012 'runner-type': runnerType,
3001330013 'json-file': jsonFile,
3001430014 'skip-chrome-onboarding': skipChromeOnboarding,
30015+ 'moropo-v1-api-key': moropoV1ApiKey,
3001530016 };
3001630017 let paramsString = Object.keys(params).reduce((acc, key) => {
3001730018 if (!params[key])
@@ -30240,6 +30241,9 @@ function getParameters() {
3024030241 const runnerType = core.getInput('runner-type', { required: false });
3024130242 const jsonFile = core.getInput('json-file', { required: false }) === 'true';
3024230243 const skipChromeOnboarding = core.getInput('skip-chrome-onboarding', { required: false }) === 'true';
30244+ const moropoV1ApiKey = core.getInput('moropo-v1-api-key', {
30245+ required: false,
30246+ });
3024330247 if (!(appFilePath !== '') !== (appBinaryId !== '')) {
3024430248 throw new Error('Either app-file or app-binary-id must be used');
3024530249 }
@@ -30278,6 +30282,7 @@ function getParameters() {
3027830282 runnerType,
3027930283 jsonFile,
3028030284 skipChromeOnboarding,
30285+ moropoV1ApiKey,
3028130286 };
3028230287 });
3028330288}
0 commit comments