mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-13 22:00:30 +05:30
23 lines
796 B
YAML
23 lines
796 B
YAML
name: Telegram Release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
debug-builds:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-python@v5
|
|
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: Upload to Telegram (@LibreTube)
|
|
run: |
|
|
echo "TG_API_ID = '${{ secrets.TG_API_ID }}'" >> config_file.py
|
|
echo "TG_API_HASH = '${{ secrets.TG_API_HASH }}'" >> config_file.py
|
|
echo "TG_TOKEN = '${{ secrets.TG_TOKEN }}'" >> config_file.py
|
|
pip install pyrogram TgCrypto requests
|
|
mv .github/runOnRelease.py .
|
|
python runOnRelease.py |