From 00b570297ab3ebfdfa7b5b4cda6c6f0800c5ce39 Mon Sep 17 00:00:00 2001 From: Alessandro Ros Date: Sun, 6 Jul 2025 22:03:31 +0200 Subject: [PATCH] log workflow errors (#4697) --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 443223cb..bedc05a3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -139,7 +139,9 @@ jobs: body: `This issue is mentioned in release ${curTag.name} 🚀\n` + `Check out the entire changelog by [clicking here](https://github.com/${owner}/${repo}/releases/tag/${curTag.name})`, }); - } catch (exc) {} + } catch (exc) { + console.error(exc.toString()); + } } dockerhub: