We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fac6fe commit d91005cCopy full SHA for d91005c
scripts/docs-deploy/snapshot-deploy.mts
@@ -42,6 +42,12 @@ export async function buildAndDeployWithSnapshots(
42
targets: DeploymentInfo[],
43
options: DeploymentConfig = {},
44
) {
45
+ console.log(`Building and deploying with snapshot builds.`);
46
+ console.log(`The following deployment targets are defined:`);
47
+ for (const target of targets) {
48
+ console.log(` - ${target.projectId}:${target.site.firebaseSiteId} | ${target.site.remoteUrl}`);
49
+ }
50
+
51
// Clone the docs repo.
52
const docsRepoDir = await cloneDocsRepositoryForMajor(major);
53
0 commit comments