#10 - Make sure maintenance branches are only created for GA releases.
This commit is contained in:
@@ -132,12 +132,16 @@ public class ReleaseCommands implements CommandMarker {
|
|||||||
git.commit(iteration, "After release cleanups.");
|
git.commit(iteration, "After release cleanups.");
|
||||||
|
|
||||||
// Prepare maintenance branches
|
// Prepare maintenance branches
|
||||||
git.checkout(iteration);
|
if (iteration.getIteration().isGAIteration()) {
|
||||||
git.createMaintenanceBranches(iteration);
|
|
||||||
|
|
||||||
build.updateProjectDescriptors(iteration, Phase.MAINTENANCE);
|
git.createMaintenanceBranches(iteration);
|
||||||
build.prepareVersions(iteration, Phase.MAINTENANCE);
|
|
||||||
git.commit(iteration, "Prepare next development iteration.");
|
build.updateProjectDescriptors(iteration, Phase.MAINTENANCE);
|
||||||
|
build.prepareVersions(iteration, Phase.MAINTENANCE);
|
||||||
|
git.commit(iteration, "Prepare next development iteration.");
|
||||||
|
|
||||||
|
git.checkout(iteration);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user