All secrets handled as dynamic secrets now
parent
017b95a445
commit
4208953d5a
|
|
@ -799,7 +799,7 @@ class Kubernetes {
|
||||||
yield this.runBuildJob();
|
yield this.runBuildJob();
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
core.info(JSON.stringify(error, undefined, 4));
|
core.error(JSON.stringify(error, undefined, 4));
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
core.setOutput('volume', this.pvcName);
|
core.setOutput('volume', this.pvcName);
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -85,7 +85,7 @@ class Kubernetes implements RemoteBuilderProviderInterface {
|
||||||
await this.runCloneJob();
|
await this.runCloneJob();
|
||||||
await this.runBuildJob();
|
await this.runBuildJob();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.info(JSON.stringify(error, undefined, 4));
|
core.error(JSON.stringify(error, undefined, 4));
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue