mirror of
https://github.com/yuliskov/SmartTube.git
synced 2026-01-04 13:00:49 -06:00
68 lines
2.2 KiB
YAML
68 lines
2.2 KiB
YAML
name: Build Debug APK
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v5
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'temurin'
|
|
cache: 'gradle'
|
|
|
|
- name: Extract and Calculate Version
|
|
id: get_version
|
|
run: |
|
|
BASE_VERSION_CODE=$(grep "versionCode" smarttubetv/build.gradle | head -n 1 | grep -o '[0-9]\+')
|
|
echo "VERSION_CODE=$((BASE_VERSION_CODE * 100000 + ${{ github.run_number }}))" >> $GITHUB_OUTPUT
|
|
BASE_VERSION_NAME=$(grep "versionName" smarttubetv/build.gradle | head -n 1 | awk '{print $2}' | tr -d '"' | tr -d "'")
|
|
echo "VERSION_NAME=${BASE_VERSION_NAME}-beta-${{ github.run_number }}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Bump Version
|
|
uses: chkfung/android-version-actions@v1.2.3
|
|
with:
|
|
gradlePath: smarttubetv/build.gradle
|
|
versionCode: ${{ steps.get_version.outputs.VERSION_CODE }}
|
|
versionName: ${{ steps.get_version.outputs.VERSION_NAME }}
|
|
|
|
- name: Build with Gradle
|
|
run: |
|
|
chmod +x gradlew
|
|
./gradlew clean assembleStbetaDebug
|
|
|
|
- name: Upload ARM64 APK
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: SmartTube_${{ steps.get_version.outputs.VERSION_NAME }}_arm64
|
|
path: ./smarttubetv/build/outputs/apk/stbeta/debug/*_arm64-v8a.apk
|
|
if-no-files-found: error
|
|
retention-days: 1
|
|
|
|
- name: Upload ARMv7 APK
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: SmartTube_${{ steps.get_version.outputs.VERSION_NAME }}_armeabi-v7a
|
|
path: ./smarttubetv/build/outputs/apk/stbeta/debug/*_armeabi-v7a.apk
|
|
if-no-files-found: error
|
|
retention-days: 1
|
|
|
|
- name: Upload x86 APK
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: SmartTube_${{ steps.get_version.outputs.VERSION_NAME }}_x86
|
|
path: ./smarttubetv/build/outputs/apk/stbeta/debug/*_x86.apk
|
|
if-no-files-found: error
|
|
retention-days: 1
|