mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 08:20:32 +05:30
Fix Format
This commit is contained in:
parent
75b823c715
commit
f12b6cd81e
15
.github/tg.py
vendored
15
.github/tg.py
vendored
@ -1,20 +1,23 @@
|
|||||||
import telegram
|
import telegram
|
||||||
from tgconfig import TG_TOKEN
|
from tgconfig import TG_TOKEN
|
||||||
from json import load
|
from json import load
|
||||||
|
from time import sleep
|
||||||
|
|
||||||
f = open('commit.json')
|
f = open('commit.json')
|
||||||
data = load(f)
|
data = load(f)
|
||||||
|
f.close()
|
||||||
|
|
||||||
TG_CHAT_ID = "-1001537505605"
|
TG_CHAT_ID = "-1001537505605"
|
||||||
bot = telegram.Bot(TG_TOKEN)
|
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']}
|
{data['commit']['message']}
|
||||||
''')
|
|
||||||
|
Signed-off-by: {data['commit']['author']['name']}
|
||||||
|
|
||||||
|
[Commit]({data}['html_url'])
|
||||||
|
''', 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-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-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_64-debug.apk', 'rb'))
|
||||||
bot.send_document(TG_CHAT_ID, open('app-x86-debug.apk', 'rb'))
|
|
||||||
|
|
||||||
f.close()
|
|
Loading…
x
Reference in New Issue
Block a user