This commit is contained in:
nomadics9 2024-12-15 17:46:10 +03:00
parent 426f3b28e1
commit afb3e7a59f

View file

@ -88,15 +88,15 @@ jobs:
uses: actions/setup-java@v4 uses: actions/setup-java@v4
with: with:
distribution: temurin distribution: temurin
java-version: 8 java-version: 21
- name: Cache Gradle dependencies - name: Cache Gradle dependencies
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: ~/.gradle/caches path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-8debug-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} key: ${{ runner.os }}-gradle-21debug-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: | restore-keys: |
${{ runner.os }}-gradle-8debug- ${{ runner.os }}-gradle-21debug-
# Step 9: Build the APK # Step 9: Build the APK
- name: Build APK - name: Build APK
@ -129,7 +129,7 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: unsigned-apk name: unsigned-apk
path: app-release/app/build/outputs/apk/release/alaskartv-androidtv-v${{ env.VERSION_NAME }}-debug.apk path: app-release/app/build/outputs/apk/debug/alaskartv-androidtv-v${{ env.VERSION_NAME }}-debug.apk
# # Step 10: Sign the APK # # Step 10: Sign the APK
# - name: Sign APK # - name: Sign APK