Skip to content

Commit

Permalink
Test: Use release build instead of debug
Browse files Browse the repository at this point in the history
  • Loading branch information
LuftVerbot committed Aug 16, 2024
1 parent c78035a commit 290ffa7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ jobs:

- name: Build with Gradle
run: |
./gradlew assembleDebug \
./gradlew assembleRelease \
-Pandroid.injected.signing.store.file=$GITHUB_WORKSPACE/signing-key.jks \
-Pandroid.injected.signing.store.password=${{ secrets.PASSWORD }} \
-Pandroid.injected.signing.key.alias=key0 \
-Pandroid.injected.signing.key.password=${{ secrets.PASSWORD }}
cp app/build/outputs/apk/debug/app-debug.apk app/build/de-${{ env.VERSION }}.apk
cp app/build/outputs/apk/debug/app-release.apk app/build/de-${{ env.VERSION }}.apk
- name: Upload APK
uses: actions/upload-artifact@v4
with:
path: app/build/outputs/apk/debug/app-debug.apk
path: app/build/outputs/apk/release/app-release.apk

- name: Upload APK to Discord
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ android {
}

dependencies {
val libVersion = "main-SNAPSHOT"
val libVersion = "f6716fb9e9" //"main-SNAPSHOT"
compileOnly("com.github.brahmkshatriya:echo:$libVersion")

implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.14")
Expand Down

0 comments on commit 290ffa7

Please sign in to comment.