mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-22 21:57:56 +00:00
Initial commit: Pezkuwi Wallet Android
Complete rebrand of Nova Wallet for Pezkuwichain ecosystem. ## Features - Full Pezkuwichain support (HEZ & PEZ tokens) - Polkadot ecosystem compatibility - Staking, Governance, DeFi, NFTs - XCM cross-chain transfers - Hardware wallet support (Ledger, Polkadot Vault) - WalletConnect v2 - Push notifications ## Languages - English, Turkish, Kurmanci (Kurdish), Spanish, French, German, Russian, Japanese, Chinese, Korean, Portuguese, Vietnamese Based on Nova Wallet by Novasama Technologies GmbH © Dijital Kurdistan Tech Institute 2026
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
name: Deploy to Firebase
|
||||
description: Deploy artifacts by provided path to firebase for provided groups
|
||||
inputs:
|
||||
appId:
|
||||
description: 'Firebase AppID'
|
||||
required: true
|
||||
firebase-token:
|
||||
description: 'Token from firebase CLI'
|
||||
required: true
|
||||
releaseNotes:
|
||||
description: 'Notes which will attach to version'
|
||||
required: true
|
||||
default: 'update'
|
||||
test-groups:
|
||||
description: 'Groups which will receive the version'
|
||||
required: true
|
||||
upload-file:
|
||||
description: 'File to uploading'
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Upload artifact to Firebase App Distribution
|
||||
id: upload
|
||||
continue-on-error: true
|
||||
uses: wzieba/Firebase-Distribution-Github-Action@v1.7.0
|
||||
with:
|
||||
appId: ${{ inputs.appId }}
|
||||
serviceCredentialsFileContent: ${{ inputs.firebase-token }}
|
||||
releaseNotes: ${{ inputs.releaseNotes }}
|
||||
groups: ${{ inputs.test-groups }}
|
||||
file: ${{ inputs.upload-file }}
|
||||
|
||||
- name: Sleep for 60 seconds
|
||||
uses: whatnick/wait-action@master
|
||||
if: steps.upload.outcome=='failure'
|
||||
with:
|
||||
time: '60s'
|
||||
|
||||
- name: Retry upload artifacts
|
||||
if: steps.upload.outcome=='failure'
|
||||
uses: wzieba/Firebase-Distribution-Github-Action@v1.7.0
|
||||
with:
|
||||
appId: ${{ inputs.appId }}
|
||||
serviceCredentialsFileContent: ${{ inputs.firebase-token }}
|
||||
releaseNotes: ${{ inputs.releaseNotes }}
|
||||
groups: ${{ inputs.test-groups }}
|
||||
file: ${{ inputs.upload-file }}
|
||||
Reference in New Issue
Block a user