diff --git a/.github/tg.py b/.github/tg.py index 261ba88de..1c7bd8b8a 100644 --- a/.github/tg.py +++ b/.github/tg.py @@ -5,17 +5,17 @@ from time import sleep f = open('commit.json') data = load(f) +f.close() TG_CHAT_ID = "-1001537505605" bot = telegram.Bot(TG_TOKEN) -bot.send_photo(TG_CHAT_ID, open('alpha.png', 'rb'), f'''Libretube {data['sha'][0:7]} // Alpha +bot.send_photo(TG_CHAT_ID, open('alpha.png', 'rb'), f'''*Libretube {data['sha'][0:7]} // Alpha* {data['commit']['message']} -''') + +Signed-off-by: {data['commit']['author']['name']} +''', parse_mode=telegram.ParseMode.MARKDOWN) bot.send_document(TG_CHAT_ID, open('app-arm64-v8a-debug.apk', 'rb')) bot.send_document(TG_CHAT_ID, open('app-armeabi-v7a-debug.apk', 'rb')) -bot.send_document(TG_CHAT_ID, open('app-x86_64-debug.apk', 'rb')) -bot.send_document(TG_CHAT_ID, open('app-x86-debug.apk', 'rb')) - -f.close() \ No newline at end of file +bot.send_document(TG_CHAT_ID, open('app-x86_64-debug.apk', 'rb')) \ No newline at end of file