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>
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: Publish GitHub release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
uses: pezkuwichain/pezkuwi-wallet-android/.github/workflows/android_build.yml@main
|
|
with:
|
|
branch: master
|
|
gradlew-command: assembleReleaseGithub
|
|
keystore-file-name: github_key.jks
|
|
secrets: inherit
|
|
|
|
create-release:
|
|
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: Rename artifacts
|
|
run: mv app/releaseGithub/app-releaseGithub.apk app/releaseGithub/pezkuwi-wallet-android-${{ github.ref_name }}-github.apk
|
|
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
name: Release ${{ github.ref_name }}
|
|
tag_name: ${{ github.ref_name }}
|
|
generate_release_notes: true
|
|
draft: true
|
|
files: app/releaseGithub/pezkuwi-wallet-android-${{ github.ref_name }}-github.apk
|