Skip to content

Commit 920ac89

Browse files
committed
build: point automatic docs deployment to production firebase sites
Also needs to re-configure domain DNS and wire up the new service key for the `material-angular-io` GCP project.
1 parent ee452de commit 920ac89

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/docs-deploy/utils.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ export class SiteTarget {
1515

1616
/** Object capturing all site targets for the docs-app. */
1717
export const sites = {
18-
stable: new SiteTarget('ng-comp-test', 'https://ng-comp-test.firebaseapp.com'),
19-
next: new SiteTarget('next-ng-comp-test', 'https://next-ng-comp-test.firebaseapp.com'),
20-
rc: new SiteTarget('rc-ng-comp-test', 'https://rc-ng-comp-test.firebaseapp.com'),
18+
stable: new SiteTarget('latest-material-angular-io', 'https://material.angular.io'),
19+
next: new SiteTarget('next-material-angular-io', 'https://next.material.angular.io'),
20+
rc: new SiteTarget('rc-material-angular-io', 'https://rc.material.angular.io'),
2121

2222
forMajor: (major: number) =>
23-
new SiteTarget(`v${major}-ng-comp-test`, `https://v${major}-ng-comp-test.firebaseapp.com`),
23+
new SiteTarget(`v${major}-material-angular-io`, `https://v${major}.material.angular.io`),
2424
};
2525

2626
/** Configuration describing the Firebase project that we deploy to. */
2727
export const firebaseConfig = {
28-
projectId: 'angular-components-test',
28+
projectId: 'material-angular-io',
2929
serviceKey: process.env.DOCS_SITE_FIREBASE_SERVICE_KEY!,
3030
};
3131

0 commit comments

Comments
 (0)