mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 14:20:30 +05:30
Merge pull request #471 from LibreTubeAlpha/master
Telegram Bot support
This commit is contained in:
commit
0f04146520
11
.github/tg.py
vendored
Normal file
11
.github/tg.py
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import telegram
|
||||
from tgconfig import TG_TOKEN
|
||||
|
||||
TG_CHAT_ID = "-1001537505605"
|
||||
bot = telegram.Bot(TG_TOKEN)
|
||||
|
||||
bot.send_photo(TG_CHAT_ID, open('space.png', '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-x86_64-debug.apk', 'rb'))
|
||||
bot.send_document(TG_CHAT_ID, open('app-x86-debug.apk', 'rb'))
|
41
.github/workflows/tg-bot.yml
vendored
Normal file
41
.github/workflows/tg-bot.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
name: Telegram Builder
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
paths-ignore:
|
||||
- "README*.md"
|
||||
- "fastlane/**"
|
||||
- "assets/**"
|
||||
- ".github/**/*.md"
|
||||
|
||||
jobs:
|
||||
debug-builds:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: gradle/wrapper-validation-action@v1
|
||||
- uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
|
||||
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
|
||||
|
||||
- name: set up JDK 11
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: 11
|
||||
distribution: "temurin"
|
||||
cache: "gradle"
|
||||
|
||||
- name: Build debug APK and run jvm tests
|
||||
run: ./gradlew assembleDebug
|
||||
|
||||
- name: Telegram Bot
|
||||
run: |
|
||||
mv app/build/outputs/apk/debug/*.apk .github/
|
||||
cd .github
|
||||
curl https://libre-tube.github.io/assets/LibreSpace.png --output space.png
|
||||
echo "TG_TOKEN = '${{ secrets.TG_TOKEN }}'" > tgconfig.py
|
||||
python -m pip install --upgrade pip
|
||||
pip install python-telegram-bot
|
||||
python tg.py
|
Loading…
Reference in New Issue
Block a user