All secrets handled as dynamic secrets now

pull/273/head
Frostebite 2021-06-06 21:51:26 +01:00
parent 017b95a445
commit 4208953d5a
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -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);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -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;
} }