Skip to content

Commit

Permalink
Add dist file
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu committed Dec 20, 2020
1 parent 0c1af46 commit 08574d8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
15 changes: 14 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2520,6 +2520,7 @@ const fs = __webpack_require__(747);
const request = __webpack_require__(335);

let fail_ci;
let verbose;
try {
const name = core.getInput("name");
const token = core.getInput("token");
Expand All @@ -2529,12 +2530,12 @@ try {
const env_vars = core.getInput("env_vars");
const dir = core.getInput("directory");
const write_path = core.getInput("path_to_write_report");
const verbose = core.getInput("verbose");
const working_dir = core.getInput("working-directory");
const xcode_derived_data = core.getInput("xcode_derived_data");
const xcode_package = core.getInput("xcode_package");

fail_ci = core.getInput("fail_ci_if_error").toLowerCase();
verbose = core.getInput("verbose").toLowerCase();

if (
fail_ci === "yes" ||
Expand All @@ -2548,6 +2549,18 @@ try {
fail_ci = false;
}

if (
verbose === "yes" ||
verbose === "y" ||
verbose === "true" ||
verbose === "t" ||
verbose === "1"
) {
verbose = true;
} else {
verbose = false;
}

request({
json: false,
maxAttempts: 10,
Expand Down
1 change: 1 addition & 0 deletions hooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

npm i --package-lock-only
npm run build
git add dist/index.js

0 comments on commit 08574d8

Please sign in to comment.