Skip to content

Commit 8fac6fe

Browse files
committed
build: prepare for v15 and exceptional minors for v14 (#25146)
1 parent 5b2ea92 commit 8fac6fe

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.ng-dev/pull-request.mts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,8 @@ export const pullRequest: PullRequestConfig = {
1616
mergeReadyLabel: 'merge ready',
1717
commitMessageFixupLabel: 'commit message fixup',
1818
caretakerNoteLabel: 'caretaker note',
19+
20+
// TODO(EXCEPTIONAL_MINOR): Remove this when v15 moves into RC / or when exceptional
21+
// minors are supported.
22+
__specialTreatRcAsExceptionalMinor: true,
1923
};

scripts/docs-deploy/deploy-ci-push.mts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ async function main() {
3030

3131
if (branchName === active.next.branchName) {
3232
const major = active.next.version.major;
33-
const targets = [{projectId, description, site: sites.next}];
33+
34+
const targets = [
35+
// TODO(EXCEPTIONAL_MINOR): Restore the original logic for `next.material.angular.io`.
36+
// {projectId, description, site: sites.next}
37+
];
3438

3539
// If the next release train is for a new major that is not published as part of the
3640
// other active release trains, we also publish to e.g. `v14.material.angular.io`.
@@ -68,7 +72,11 @@ async function main() {
6872

6973
if (branchName === active.releaseCandidate?.branchName) {
7074
const major = active.releaseCandidate.version.major;
71-
const targets = [{projectId, description, site: sites.rc}];
75+
const targets = [
76+
// TODO(EXCEPTIONAL_MINOR): Restore the original logic for `next.material.angular.io`.
77+
{projectId, description, site: sites.next},
78+
{projectId, description, site: sites.rc},
79+
];
7280

7381
// If the RC is for a new major that `latest` does not publish yet, we will deploy
7482
// the dedicated major site like `v13.material.angular.io` using the `rc` branch.

0 commit comments

Comments
 (0)