Update package dependencies and scripts; add 'shx' for shell command execution in package.json
Some checks failed
Some checks failed
This commit is contained in:
5
dist/index.js
generated
vendored
5
dist/index.js
generated
vendored
@@ -33238,6 +33238,7 @@ var InputNames;
|
||||
InputNames["ComposeVersion"] = "compose-version";
|
||||
InputNames["GithubToken"] = "github-token";
|
||||
InputNames["ServiceLogLevel"] = "services-log-level";
|
||||
InputNames["DownOnSuccess"] = "down-on-success";
|
||||
})(InputNames || (exports.InputNames = InputNames = {}));
|
||||
exports.COMPOSE_VERSION_LATEST = "latest";
|
||||
class InputService {
|
||||
@@ -33253,6 +33254,7 @@ class InputService {
|
||||
composeVersion: this.getComposeVersion(),
|
||||
githubToken: this.getGithubToken(),
|
||||
serviceLogLevel: this.getServiceLogLevel(),
|
||||
downOnSuccess: this.getDownOnSuccess(),
|
||||
};
|
||||
}
|
||||
getDockerFlags() {
|
||||
@@ -33315,6 +33317,9 @@ class InputService {
|
||||
}
|
||||
return configuredLevel || logger_service_1.LogLevel.Debug;
|
||||
}
|
||||
getDownOnSuccess() {
|
||||
return (0, core_1.getInput)(InputNames.DownOnSuccess, { required: false }) === "true";
|
||||
}
|
||||
}
|
||||
exports.InputService = InputService;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user