mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-21 23:48:00 +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
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
|