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
When using singingOption=default, the XCode@5 task fails to sign an app even thought the signing details are set in the project. There is an warning message:
This issue is stale because it has been open for 180 days with no activity. Remove the stale label or comment on the issue otherwise this will be closed in 5 days
When using singingOption=default, the XCode@5 task fails to sign an app even thought the signing details are set in the project. There is an warning message:
2021-03-11T15:44:50.1982960Z ##[debug]Corresponding pbxProject file doesn't exist: /users/runner/work/1/s/xxxxx.pbxproj
which occurs when the code is trying to extract the project settings to create the plist.
The xxxxx.pbxproj is resolved by replacing the .xcworkspace with .pbxproj:
let pbxProjectPath: string = workspace.trim().toLowerCase().replace('.xcworkspace', '.pbxproj');
However, that seems to be an invalid replacement. I have never seen a Xcode project structured that way. The correct code would be:
let pbxProjectPath: string = workspace.trim().toLowerCase().replace('.xcworkspace', '.xcodeproj/project.pbxproj');
The text was updated successfully, but these errors were encountered: