Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xcode@5 fails to resolve signing settings when signingOption=default #14577

Closed
ghost opened this issue Mar 11, 2021 · 1 comment
Closed

Xcode@5 fails to resolve signing settings when signingOption=default #14577

ghost opened this issue Mar 11, 2021 · 1 comment
Labels
Area: ABTT Akvelon Build Tasks Team area of work stale Task: Xcode

Comments

@ghost
Copy link

ghost commented Mar 11, 2021

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');

@github-actions
Copy link

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

@github-actions github-actions bot added the stale label Sep 13, 2021
@ghost ghost closed this as completed Sep 13, 2021
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: ABTT Akvelon Build Tasks Team area of work stale Task: Xcode
Projects
None yet
Development

No branches or pull requests

2 participants