Merge pull request #2841 from kaloudis/fix-keypad-flow #269
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Android | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'The branch to build' | |
required: true | |
permissions: | |
users: | |
- kaloudis | |
push: | |
branches: | |
- "master" | |
jobs: | |
build-android: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Envinfo | |
run: npx envinfo | |
- name: Build application | |
run: chmod +x build.sh && bash ./build.sh --no-tty | |
- name: 'Archive arm64-v8a' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: arm64-v8a | |
path: android/app/build/outputs/apk/release/zeus-arm64-v8a.apk | |
retention-days: 5 | |
- name: 'Archive armeabi-v7a' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: armeabi-v7a | |
path: android/app/build/outputs/apk/release/zeus-armeabi-v7a.apk | |
retention-days: 5 | |
- name: 'Archive universal' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: universal | |
path: android/app/build/outputs/apk/release/zeus-universal.apk | |
retention-days: 5 | |
- name: 'Archive x86' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: x86 | |
path: android/app/build/outputs/apk/release/zeus-x86.apk | |
retention-days: 5 | |
- name: 'Archive x86_64' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: x86_64 | |
path: android/app/build/outputs/apk/release/zeus-x86_64.apk | |
retention-days: 5 |