Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Fix missing dependency to importProvisioningProfiles for xcodeArchive [ATLAS-580] #140

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ class IOSBuildPlugin implements Plugin<Project> {
}

def xcodeArchive = tasks.create(maybeBaseName(baseName, "xcodeArchive"), XcodeArchive) {
it.dependsOn addKeychain, unlockKeychain, podInstall, buildKeychain
it.dependsOn addKeychain, unlockKeychain, importProvisioningProfiles, podInstall, buildKeychain
it.projectPath.set(project.provider({
def d = project.layout.buildDirectory.get()
if (podInstall.workspace.exists()) {
Expand Down