mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-12 21:30:30 +05:30
81 lines
2.4 KiB
YAML
81 lines
2.4 KiB
YAML
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:
|
|
debug-builds:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: gradle/wrapper-validation-action@v3
|
|
- 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: Retrieve Commit Info
|
|
run: |
|
|
cd .github
|
|
curl https://api.github.com/repos/${{ github.repository }}/commits/${{ github.sha }} > commit.json
|
|
cd ..
|
|
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: 17
|
|
distribution: "temurin"
|
|
cache: "gradle"
|
|
|
|
- name: Git Configuraion
|
|
run: |
|
|
git config --global user.name "libretube-bot"
|
|
git config --global user.email "libretube@proton.me"
|
|
git config --global credential.helper store
|
|
echo "https://libretube-bot:${{ secrets.GH_TOKEN }}@github.com" > ~/.git-credentials
|
|
|
|
- name: Compile
|
|
run: |
|
|
./gradlew assembleDebug
|
|
|
|
- name: Sign Apk
|
|
continue-on-error: true
|
|
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 }}
|
|
|
|
- name: Upload to Archive
|
|
continue-on-error: true
|
|
run: |
|
|
mv .github/uploader.py .
|
|
echo "GH_REPO = '${{ github.repository }}'" > config_file.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
|
|
python ../uploader.py
|
|
|
|
- name: Upload APK
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: app
|
|
path: nightly/*.apk
|
|
|