mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-22 10:17:57 +00:00
61eeeb5be9
- Update deprecated actions: - actions/checkout@v2 -> v4 - actions-rs/toolchain@v1 -> dtolnay/rust-toolchain@stable - peter-evans/find-comment@v2 -> v3 - tibdex/github-app-token@v1 -> v2 - peter-evans/repository-dispatch@v2 -> v3 - Temporarily disable appium-mobile-tests trigger (PAT_TOKEN needs workflow scope) - Add Kurdish (Kurmancî) translation (values-ku/strings.xml) - 1996 strings translated from English - Key UI terms in Kurdish (Wallet=Cîzdan, Account=Hesab, etc.) - Update Pezkuwi branding images Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
|