82fb78e9ea
Release Notes * Bumped haze, agp, and guava dependencies * Implemented ordering functionality for friends list * Added scroll to top feature in friends and conversations screens * Improved messages handling * Fixed coloring issues * Cache improvements * Implemented logout functionality * Implemented new authorization flow (no auto-token re-request) * Added support for sticker pack preview attachments * Bump LongPoll to version 19 * Markdown support for messages bubbles * Adjust app name font size based on screen width --------- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
name: Android CI Release
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
env:
|
|
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
|
RELEASE_SIGN_KEY_ALIAS: ${{ secrets.RELEASE_SIGN_KEY_ALIAS }}
|
|
RELEASE_SIGN_KEY_PASSWORD: ${{ secrets.RELEASE_SIGN_KEY_PASSWORD }}
|
|
|
|
jobs:
|
|
create_release:
|
|
runs-on: ubuntu-24.04
|
|
name: Build artifacts
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: set up JDK 21
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '21'
|
|
distribution: 'temurin'
|
|
cache: gradle
|
|
|
|
- name: Grant execute permission for gradlew
|
|
run: chmod +x gradlew
|
|
|
|
- name: Build and sign debug APK
|
|
run: ./gradlew assembleDebug
|
|
|
|
- name: Upload debug APK
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: app-debug.apk
|
|
path: app/build/outputs/apk/debug/app-debug.apk
|
|
|
|
- name: Build and sign release APK
|
|
run: ./gradlew assembleRelease
|
|
|
|
- name: Upload release APK
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: app-release.apk
|
|
path: app/build/outputs/apk/release/app-release.apk
|
|
|
|
- name: Build and sign debug Bundle
|
|
run: ./gradlew bundleDebug
|
|
|
|
- name: Upload debug Bundle
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: app-debug.aab
|
|
path: app/build/outputs/bundle/debug/app-debug.aab
|
|
|
|
- name: Build and sign release Bundle
|
|
run: ./gradlew bundleRelease
|
|
|
|
- name: Upload release Bundle
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: app-release.aab
|
|
path: app/build/outputs/bundle/release/app-release.aab
|