release FOSS for IzzyOnDroid

This commit is contained in:
adbenitez
2024-08-24 18:18:00 +02:00
parent aade32dafe
commit 9374d1adf3
5 changed files with 35 additions and 42 deletions
+3 -3
View File
@@ -42,16 +42,16 @@ jobs:
ANDROID_NDK_ROOT: ${{ steps.setup-ndk.outputs.ndk-path }}
run: |
export PATH="${PATH}:${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64/bin/"
scripts/install-toolchains.sh && scripts/ndk-make.sh
scripts/install-toolchains.sh && scripts/ndk-make.sh armeabi-v7a
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build APK
run: ./gradlew --no-daemon assembleGplayDebug
run: ./gradlew --no-daemon assembleFossDebug
- name: Upload APK
uses: actions/upload-artifact@v3
with:
name: app-preview.apk
path: 'build/outputs/apk/gplay/debug/*.apk'
path: 'build/outputs/apk/foss/debug/*.apk'
+2 -2
View File
@@ -54,7 +54,7 @@ jobs:
echo "DC_RELEASE_STORE_PASSWORD=${{ secrets.KEY_STORE_PASSWORD }}" >> ~/.gradle/gradle.properties
echo "DC_RELEASE_KEY_ALIAS=${{ secrets.ALIAS }}" >> ~/.gradle/gradle.properties
echo "DC_RELEASE_KEY_PASSWORD=${{ secrets.KEY_PASSWORD }}" >> ~/.gradle/gradle.properties
./gradlew --no-daemon assembleGplayRelease
./gradlew --no-daemon assembleFossRelease
- name: Release
uses: softprops/action-gh-release@v1
@@ -63,4 +63,4 @@ jobs:
body: "DeltaLab release, download the APK file for your phone's CPU architecture, if you don't know your phone's architecture, use the universal APK which works for all architectures"
prerelease: ${{ contains(github.event.ref, '-beta') }}
fail_on_unmatched_files: true
files: build/outputs/apk/gplay/release/*.apk
files: build/outputs/apk/foss/release/*.apk