Build play variant in CI as well

Stephen Paul Weber created

Change summary

.builds/debian-stable.yml | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

Detailed changes

.builds/debian-stable.yml 🔗

@@ -3,12 +3,14 @@ sources:
 - https://git.sr.ht/~singpolyma/cheogram-android
 artifacts:
 - cheogram.apk
+- cheogram_google_play.apk
 packages:
 - wget
 - unzip
 - android-sdk
 secrets:
 - 7eed327c-05c7-49b4-baed-a4d8785588d5
+- 9c6cc176-db6c-4158-9abb-2cb1662d5ca9
 environment:
   ANDROID_SDK_ROOT: /home/build/android
 tasks:
@@ -26,8 +28,14 @@ tasks:
     cd cheogram-android
     sed -ie 's/<!-- INSERT -->/<meta-data android:name="io.sentry.dsn" android:value="https:\/\/680d470d348a4cc494bf2198eed30c49@o559641.ingest.sentry.io\/6221823" \/>/' src/cheogram/AndroidManifest.xml
     sed -ie 's/\/\/ INSERT/implementation "io.sentry:sentry-android:6.4.2"/' build.gradle
-- build: |
+- build_free: |
     cd cheogram-android
     ./gradlew assembleCheogramFreeDebug
+- build_google_play: |
+    cd cheogram-android
+    mkdir -p src/playstore/res/values/
+    mv ~/push.xml src/playstore/res/values/
+    ./gradlew assembleCheogramPlaystoreDebug
 - assets: |
     mv cheogram-android/build/outputs/apk/cheogramFree/debug/*.apk cheogram.apk
+    mv cheogram-android/build/outputs/apk/cheogramPlaystore/debug/*.apk cheogram_google_play.apk