Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions smtp_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")