diff --git a/send_notifications.py b/send_notifications.py index 14e43daf15..12cea12e81 100644 --- a/send_notifications.py +++ b/send_notifications.py @@ -68,5 +68,5 @@ for commit in reversed(commits): send_message_to_ci_channel(message=message) send_silent_message_to_team_group(message=message) -with open(os.listdir(artifact_directory)[0], 'rb') as apk: +with open(f'{artifact_directory}/{os.listdir(artifact_directory)[0]}', 'rb') as apk: send_document_to_ci_channel(document=apk) \ No newline at end of file