Log to google for GCP_LOGGING

pull/310/head
Frostebite 2022-01-01 22:00:35 +00:00
parent 0e6f85b587
commit 3ff957c111
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2538,7 +2538,7 @@ class CloudRunnerBuildCommandProcessor {
exports.CloudRunnerBuildCommandProcessor = CloudRunnerBuildCommandProcessor; exports.CloudRunnerBuildCommandProcessor = CloudRunnerBuildCommandProcessor;
class Hook { class Hook {
constructor() { constructor() {
this.secrets = []; this.secrets = new Array();
} }
} }
exports.Hook = Hook; exports.Hook = Hook;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -37,7 +37,7 @@ export class CloudRunnerBuildCommandProcessor {
} }
export class Hook { export class Hook {
public commands; public commands;
public secrets: CloudRunnerSecret[] = []; public secrets: CloudRunnerSecret[] = new Array<CloudRunnerSecret>();
public name; public name;
public hook!: string[]; public hook!: string[];
public step!: string[]; public step!: string[];