Merge pull request #9 from fjogeleit/fix-invalid-http-error-output

convert error into string an mark build as failed
This commit is contained in:
Frank Jogeleit 2020-07-19 10:06:08 +02:00 committed by GitHub
commit 82c8e38c69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View file

@ -2654,7 +2654,7 @@ const instance = axios.create(instanceConfig);
core.setOutput('response', JSON.stringify(response.data)) core.setOutput('response', JSON.stringify(response.data))
} catch (error) { } catch (error) {
if (error.toJSON) { if (error.toJSON) {
core.setOutput(error.toJSON()); core.setOutput(JSON.stringify(error.toJSON()));
} }
if (error.response) { if (error.response) {

View file

@ -1,6 +1,6 @@
{ {
"name": "http-request-action", "name": "http-request-action",
"version": "1.3.0", "version": "1.3.2",
"description": "", "description": "",
"main": "src/index.js", "main": "src/index.js",
"private": false, "private": false,

View file

@ -58,7 +58,7 @@ const instance = axios.create(instanceConfig);
core.setOutput('response', JSON.stringify(response.data)) core.setOutput('response', JSON.stringify(response.data))
} catch (error) { } catch (error) {
if (error.toJSON) { if (error.toJSON) {
core.setOutput(error.toJSON()); core.setFailed(JSON.stringify(error.toJSON()));
} }
if (error.response) { if (error.response) {