mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
f5f707bd4e
* Refactor GH workflows * Add version mismatch checker and UpdateClient Dialog * Fix finalize release workflow * Increase prettier scope * Increase prettier coverage, add some static to prettierignore * Add CodeQL on PR
81 lines
2.6 KiB
YAML
81 lines
2.6 KiB
YAML
name: Android Build
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
inputs:
|
|
semver:
|
|
required: true
|
|
type: string
|
|
push:
|
|
branches: [ "main" ]
|
|
paths: [ "mobile", "frontend" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
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: |
|
|
cd mobile
|
|
npm install
|
|
|
|
- name: 'Build Android Release'
|
|
run: |
|
|
cd mobile/android
|
|
./gradlew assembleRelease
|
|
|
|
- name: 'Get Commit Hash'
|
|
id: commit
|
|
uses: pr-mpt/actions-commit-hash@v1
|
|
|
|
- name: 'Upload .apk Artifact (for Release)'
|
|
uses: actions/upload-artifact@v3
|
|
if: inputs.semver != '' # If this workflow is called from release.yml
|
|
with:
|
|
name: robosats-${{ inputs.semver }}.apk
|
|
path: mobile/android/app/build/outputs/apk/release/app-release.apk
|
|
|
|
- name: 'Upload .apk Artifact (for Pre-release)'
|
|
uses: actions/upload-artifact@v3
|
|
if: inputs.semver == '' # only if this workflow is not called from a push to tag (a Release)
|
|
with:
|
|
name: robosats-${{ steps.commit.outputs.short }}.apk
|
|
path: mobile/android/app/build/outputs/apk/release/app-release.apk
|
|
|
|
- name: 'Create Pre-release'
|
|
id: create_release
|
|
if: inputs.semver == '' # only if this workflow is not called from a push to tag (a Release)
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: android-${{ steps.commit.outputs.short }}
|
|
release_name: robosats-alpha-${{ steps.commit.outputs.short }}
|
|
draft: false
|
|
prerelease: true
|
|
|
|
- name: 'Upload Pre-release APK Asset'
|
|
id: upload-release-asset
|
|
if: inputs.semver == '' # only if this workflow is not called from a push to tag (a Release)
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: ./mobile/android/app/build/outputs/apk/release/app-release.apk
|
|
asset_name: robosats-${{ steps.commit.outputs.short }}.apk
|
|
asset_content_type: application/apk |