@@ -30,7 +30,11 @@ async function main() {
30
30
31
31
if ( branchName === active . next . branchName ) {
32
32
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
+ ] ;
34
38
35
39
// If the next release train is for a new major that is not published as part of the
36
40
// other active release trains, we also publish to e.g. `v14.material.angular.io`.
@@ -68,7 +72,11 @@ async function main() {
68
72
69
73
if ( branchName === active . releaseCandidate ?. branchName ) {
70
74
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
+ ] ;
72
80
73
81
// If the RC is for a new major that `latest` does not publish yet, we will deploy
74
82
// the dedicated major site like `v13.material.angular.io` using the `rc` branch.
0 commit comments