mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-23 07:17:57 +00:00
31c8c5995f
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
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: Publish report to gh-pages
|
|
description: That workflow will publish report to the github-pages
|
|
inputs:
|
|
keep-reports-history:
|
|
description: "History storage depth, integer"
|
|
required: true
|
|
token:
|
|
description: "Github PAT"
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Get Allure history
|
|
uses: actions/checkout@v4
|
|
if: always()
|
|
continue-on-error: true
|
|
with:
|
|
repository: pezkuwichain/balances_test_result
|
|
ref: gh-pages
|
|
path: gh-pages
|
|
|
|
- name: Allure Report action
|
|
uses: simple-elf/allure-report-action@master
|
|
if: always()
|
|
with:
|
|
allure_results: allure-results
|
|
allure_history: allure-history
|
|
keep_reports: ${{ inputs.keep-reports-history }}
|
|
github_repo: balances_test_result
|
|
github_repo_owner: pezkuwichain
|
|
|
|
- name: Deploy report to Github Pages
|
|
if: always()
|
|
uses: peaceiris/actions-gh-pages@v4
|
|
with:
|
|
deploy_key: ${{ inputs.token }}
|
|
publish_branch: gh-pages
|
|
publish_dir: allure-history
|
|
external_repository: pezkuwichain/balances_test_result
|