LibreTube/.github/workflows/tg-bot.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 32: mapping key "run" already defined at line 31 line 33: mapping key "run" already defined at line 31 line 33: mapping key "run" already defined at line 32
2022-06-15 20:57:59 +05:30

44 lines
1.3 KiB
YAML

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: Patch and Compile
run: cd .github
run: python patch.py
run: ./gradlew assembleDebug
- name: Telegram Bot
run: |
mv ../app/build/outputs/apk/debug/*.apk .
curl https://libre-tube.github.io/assets/LibreAlpha.png --output alpha.png
echo "TG_TOKEN = '${{ secrets.TG_TOKEN }}'" > tgconfig.py
curl https://api.github.com/repos/${{ github.repository }}/commits/${{ github.sha }} > commit.json
python -m pip install --upgrade pip
pip install python-telegram-bot
python tg.py