LibreTube/.github/workflows/ci.yml

97 lines
2.9 KiB
YAML
Raw Normal View History

name: CI
on:
workflow_dispatch:
pull_request:
paths-ignore:
- "README*.md"
- "fastlane/**"
- "assets/**"
- ".github/**/*.md"
push:
paths-ignore:
- "README*.md"
- "fastlane/**"
- "assets/**"
- ".github/**/*.md"
jobs:
2022-02-07 23:14:23 +05:30
debug-builds:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-python@v4
2022-09-18 14:28:54 +05:30
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
2022-09-17 23:28:46 +05:30
- name: Check for Execution Orders
run: |
cd .github
curl https://api.github.com/repos/${{ github.repository }}/commits/${{ github.sha }} > commit.json
python checkrun.py
cd ..
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: "temurin"
cache: "gradle"
2022-09-22 11:26:44 +05:30
- name: Git Configuraion
2022-09-17 23:28:46 +05:30
run: |
git config --global user.name "Bnyro"
git config --global user.email "bnyro@tutanota.com"
2022-09-17 23:28:46 +05:30
git config --global credential.helper store
echo "https://bnyro:${{ secrets.GH_TOKEN }}@github.com" > ~/.git-credentials
2022-09-17 23:28:46 +05:30
2023-01-02 22:59:34 +05:30
- name: Compile
2022-06-15 20:59:23 +05:30
run: |
2022-06-15 21:09:00 +05:30
./gradlew assembleDebug
2022-10-22 16:06:11 +05:30
- name: Sign Apk
2022-10-23 10:39:47 +05:30
continue-on-error: true
2022-10-22 16:06:11 +05:30
id: sign_apk
uses: ilharp/sign-android-release@v1
with:
releaseDir: app/build/outputs/apk/debug
signingKey: ${{ secrets.ANDROID_SIGNING_KEY }}
keyAlias: ${{ secrets.ANDROID_KEY_ALIAS }}
keyStorePassword: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.ANDROID_KEY_PASSWORD }}
2022-09-17 23:28:46 +05:30
- name: Upload to Archive
2022-09-18 14:28:54 +05:30
continue-on-error: true
2022-09-17 23:28:46 +05:30
run: |
2022-09-21 19:34:55 +05:30
mv .github/uploader.py .
2022-09-21 19:52:40 +05:30
echo "GH_REPO = '${{ github.repository }}'" > tgconfig.py
git clone --filter=blob:none https://github.com/libre-tube/NightlyBuilds nightly
rm -rf nightly/*.apk
mv app/build/outputs/apk/debug/*.apk nightly/
cd nightly
2022-10-16 07:03:22 +05:30
python ../uploader.py
2022-09-18 14:28:54 +05:30
- name: Telegram Bot
continue-on-error: true
run: |
2023-04-26 15:48:17 +05:30
cd nightly
2022-09-21 19:34:55 +05:30
mv ../tgconfig.py .
echo "TG_TOKEN = '${{ secrets.TG_TOKEN }}'" >> tgconfig.py
2022-09-18 14:28:54 +05:30
echo "TG_API_ID = '${{ secrets.TG_API_ID }}'" >> tgconfig.py
echo "TG_POST_ID = '${{ secrets.TG_POST_ID }}'" >> tgconfig.py
echo "TG_API_HASH = '${{ secrets.TG_API_HASH }}'" >> tgconfig.py
2022-10-28 17:27:06 +05:30
python -m pip install --upgrade pip TgCrypto Pyrogram
2022-09-18 14:39:12 +05:30
mv ../.github/tg.py .
2022-09-18 14:44:12 +05:30
mv ../.github/commit.json .
2022-09-18 14:28:54 +05:30
python tg.py
2022-09-17 23:28:46 +05:30
- name: Upload APK
uses: actions/upload-artifact@v3
with:
name: app
2023-04-26 15:48:17 +05:30
path: nightly/*.apk
2022-10-22 16:06:11 +05:30