Skip to content

Commit

Permalink
bump up to v1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Aug 29, 2021
1 parent 41ac9b4 commit 54b5c5d
Show file tree
Hide file tree
Showing 15 changed files with 148 additions and 20 deletions.
Binary file modified bin/goveralls_darwin_amd64
Binary file not shown.
Binary file modified bin/goveralls_linux_amd64
Binary file not shown.
Binary file modified bin/goveralls_windows_amd64.exe
Binary file not shown.
9 changes: 7 additions & 2 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const core = __importStar(require("@actions/core"));
const runner_1 = require("./runner");
async function run() {
try {
await runner_1.goveralls({
await (0, runner_1.goveralls)({
token: core.getInput("github-token"),
profile: core.getInput("path-to-profile"),
parallel: core.getBooleanInput("parallel"),
Expand All @@ -34,7 +34,12 @@ async function run() {
});
}
catch (error) {
core.setFailed(error.message);
if (error instanceof Error) {
core.setFailed(error);
}
else {
core.setFailed(`${error}`);
}
}
}
run();
50 changes: 50 additions & 0 deletions node_modules/@actions/core/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions node_modules/@actions/core/lib/command.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 38 additions & 3 deletions node_modules/@actions/core/lib/core.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 17 additions & 6 deletions node_modules/@actions/core/lib/core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/core.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions node_modules/@actions/core/lib/utils.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 20 additions & 1 deletion node_modules/@actions/core/lib/utils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 54b5c5d

Please sign in to comment.