diff --git a/.github/workflows/build_windows.yaml b/.github/workflows/build_windows.yaml index e24e93c..361e908 100644 --- a/.github/workflows/build_windows.yaml +++ b/.github/workflows/build_windows.yaml @@ -12,10 +12,11 @@ jobs: - uses: actions/checkout@v4 - - uses: robinraju/release-downloader@v1.10 + - uses: robinraju/release-downloader@v1.12 with: repository: "MerginMaps/geodiff" - latest: true + latest: false + tag: '2.0.2' # latest tag with windows binaries fileName: "geodiff_windows_binaries.zip" zipBall: false out-file-path: "scripts/windows_binaries" diff --git a/smtp_functions.py b/smtp_functions.py index c687b01..6f74db9 100644 --- a/smtp_functions.py +++ b/smtp_functions.py @@ -50,5 +50,5 @@ def send_email(error: str, config: Dynaconf) -> None: smtp_conn.sendmail(sender_email, config.notification.email_recipients, msg.as_string()) smtp_conn.quit() logging.debug("Notification email sent.") - except: - logging.debug("Failed to send notification email!") + except Exception as e: + logging.debug(f"Failed to send notification email! Error: {e}")