mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-22 21:57:56 +00:00
a294aa1a6b
Security hardened release: - Code obfuscation enabled (minifyEnabled=true, shrinkResources=true) - Sensitive files excluded (google-services.json, keystores) - Branch.io key moved to BuildConfig placeholder - Updated dependencies: OkHttp 4.12.0, Gson 2.10.1, BouncyCastle 1.77 - Comprehensive ProGuard rules for crypto wallet - Navigation 2.7.7, Lifecycle 2.7.0, ConstraintLayout 2.1.4
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
name: Manual Firebase distribution
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
firebase_group:
|
|
description: 'Firebase group'
|
|
required: true
|
|
default: dev-team
|
|
branch:
|
|
description: 'From which branch the application will be built'
|
|
required: true
|
|
default: main
|
|
|
|
jobs:
|
|
build:
|
|
uses: pezkuwichain/pezkuwi-wallet-android/.github/workflows/android_build.yml@main
|
|
with:
|
|
branch: ${{ github.event.inputs.branch }}
|
|
gradlew-command: assembleDevelop
|
|
secrets: inherit
|
|
|
|
upload:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Download built artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: apk
|
|
path: app
|
|
|
|
- name: 🗳 Upload to Firebase
|
|
uses: ./.github/workflows/upload-to-firebase
|
|
with:
|
|
appId: ${{ secrets.ANDROID_DEVELOP_FIREBASE_APP_ID }}
|
|
firebase-token: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
|
|
releaseNotes: ${{ github.event.head_commit.message }}
|
|
test-groups: ${{ github.event.inputs.firebase_group }}
|
|
upload-file: app/develop/app-develop.apk
|