You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -58590,20 +58591,22 @@ async function GetProjectDetails(credential, xcodeVersion) {
58590
58591
if (excludedProjects.includes(projectBaseName)) {
58591
58592
continue;
58592
58593
}
58593
-
core.info(`Found Xcode project: ${file}`);
58594
+
core.debug(`Found Xcode project: ${file}`);
58594
58595
projectPath = file;
58595
58596
break;
58596
58597
}
58597
58598
}
58598
58599
if (!projectPath) {
58599
58600
throw new Error(`Invalid project-path! Unable to find .xcodeproj in ${projectPathInput}. ${files.length} files were found but none matched.\n${files.join(', ')}`);
@@ -139,7 +141,7 @@ export async function GetProjectDetails(credential: AppleCredential, xcodeVersio
139
141
continue;
140
142
}
141
143
142
-
core.info(`Found Xcode project: ${file}`);
144
+
core.debug(`Found Xcode project: ${file}`);
143
145
projectPath=file;
144
146
break;
145
147
}
@@ -149,12 +151,17 @@ export async function GetProjectDetails(credential: AppleCredential, xcodeVersio
149
151
thrownewError(`Invalid project-path! Unable to find .xcodeproj in ${projectPathInput}. ${files.length} files were found but none matched.\n${files.join(', ')}`);
0 commit comments