mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-10 16:21:36 +00:00
Add android build workflow
This commit is contained in:
parent
41973cafe9
commit
22b98df7e5
34
.github/workflows/android-build.yml
vendored
Normal file
34
.github/workflows/android-build.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
name: Android Build
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches: [ "main" , "android-webview-app-ts"]
|
||||||
|
paths: [ "mobile", "frontend" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main" , "android-webview-app-ts"]
|
||||||
|
paths: [ "mobile", "frontend" ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-android:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout'
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: 'Download main.js Artifact'
|
||||||
|
uses: dawidd6/action-download-artifact@v2
|
||||||
|
with:
|
||||||
|
workflow: frontend-build.yml
|
||||||
|
workflow_conclusion: success
|
||||||
|
name: main-js
|
||||||
|
path: mobile/html/Web.bundle/js/
|
||||||
|
- name: 'Install npm dependencies'
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
- name: 'Build Android Release'
|
||||||
|
run: |
|
||||||
|
cd android && ./gradlew assembleRelease
|
||||||
|
- name: 'Upload .apk Artifact'
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: app-release.apk
|
||||||
|
path: android/app/build/outputs/apk/release/
|
Loading…
Reference in New Issue
Block a user