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 5830afc commit 048fd88Copy full SHA for 048fd88
src/deploy.ts
@@ -370,6 +370,7 @@ class Deployer {
370
const {deployConfig, deployTarget} = await this.getDeployTarget(await this.getUpdatedDeployConfig());
371
let deployId: string | null;
372
if (deployConfig.continuousDeployment) {
373
+ await this.validateGitHubLink(deployTarget);
374
deployId = await this.cloudBuild(deployTarget);
375
} else {
376
const buildFilePaths = await this.getBuildFilePaths();
@@ -585,8 +586,6 @@ class Deployer {
585
586
continuousDeployment = enable;
587
}
588
- if (continuousDeployment) await this.validateGitHubLink(deployTarget);
589
-
590
const newDeployConfig = {
591
projectId: deployTarget.project.id,
592
projectSlug: deployTarget.project.slug,
0 commit comments