Skip to content

Commit fc2a081

Browse files
chore(release): 1.0.27-alpha.1 [skip ci]
## [1.0.27-alpha.1](v1.0.26...v1.0.27-alpha.1) (2022-01-28) ### Bug Fixes * if cannot parse err, just print ([d90c802](d90c802))
1 parent d90c802 commit fc2a081

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.0.27-alpha.1](https://github.com/scribd/amazon-appmesh-virtual-node-action/compare/v1.0.26...v1.0.27-alpha.1) (2022-01-28)
2+
3+
4+
### Bug Fixes
5+
6+
* if cannot parse err, just print ([d90c802](https://github.com/scribd/amazon-appmesh-virtual-node-action/commit/d90c802d3081d1be505948d9641df4ce412e323d))
7+
18
## [1.0.26](https://github.com/scribd/amazon-appmesh-virtual-node-action/compare/v1.0.25...v1.0.26) (2022-01-28)
29

310

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ if (require.main === require.cache[eval('__filename')]) {
346346
run().catch((err) => {
347347
const httpStatusCode = err.$metadata ? err.$metadata.httpStatusCode : undefined;
348348
core.setFailed(`${err.name} (Status code: ${httpStatusCode}): ${err.message}`);
349-
core.debug(`Received error: ${JSON.stringify(err)}`);
349+
core.debug(`Received error: ${JSON.stringify(err)}`).catch(() => { return err });
350350
core.debug(err.stack);
351351
process.exit(1);
352352
});

0 commit comments

Comments
 (0)