Skip to content

Commit

Permalink
fix: error not resulting in failure
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Jan 13, 2024
1 parent dafc9f9 commit 83886d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29419,7 +29419,7 @@ const utils_1 = __nccwpck_require__(1314);
}
}
catch (err) {
core.error(`${err}`);
core.setFailed(err);
}
});
})();
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ import { fail } from "./utils";
);
}
} catch (err) {
core.error(`${err}`);
core.setFailed(<string | Error>err);
}
})();

0 comments on commit 83886d4

Please sign in to comment.