We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0328ee5 commit 6bab2e7Copy full SHA for 6bab2e7
.github/actions/github-release/main.js
@@ -56,7 +56,7 @@ async function runOnce() {
56
force: true,
57
});
58
} catch (e) {
59
- console.log("ERROR: ", JSON.stringify(e.data, null, 2));
+ console.log("ERROR: ", JSON.stringify(e.response, null, 2));
60
core.info(`creating dev tag`);
61
try {
62
await octokit.rest.git.createRef({
@@ -68,7 +68,7 @@ async function runOnce() {
68
69
// we might race with others, so assume someone else has created the
70
// tag by this point.
71
- console.log("failed to create tag: ", JSON.stringify(e.data, null, 2));
+ console.log("failed to create tag: ", JSON.stringify(e.response, null, 2));
72
}
73
74
0 commit comments