Skip to content

Commit

Permalink
[DOP-4334]: Nextgenbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
branberry committed Feb 15, 2024
1 parent 8b77681 commit d26a7c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/src/shared/next-gen-deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export async function nextGenDeploy({
}
);
const output = `COMMAND: yes | mut-publish public ${bucket} --prefix=${mutPrefix} --deploy --deployed-url-prefix=${url} --json --all-subdirectories --dry-run
\n${outputText} \n ${errorText} \n Hosted at ${url}/${mutPrefix}
\n${outputText} \n ${errorText} \n Hosted at ${url}${mutPrefix}
`;

console.log(output);
Expand Down
6 changes: 5 additions & 1 deletion src/job/jobHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -550,10 +550,14 @@ export abstract class JobHandler {

await this.cloneRepo(this._config.get<string>('repo_dir'));
this._logger.save(job._id, 'Cloned Repo');

await this.commitCheck();

this._logger.save(job._id, 'Checked Commit');
await this.pullRepo();

this._logger.save(job._id, 'Next gen build');
await this.prepNextGenBuild();

this._logger.save(job._id, 'Pulled Repo');
await this.setEnvironmentVariables();
this.logger.save(job._id, 'Prepared Environment variables');
Expand Down

0 comments on commit d26a7c6

Please sign in to comment.