Skip to content

Commit

Permalink
Revert "Add android build workflow"
Browse files Browse the repository at this point in the history
This reverts commit 340bcf8.
  • Loading branch information
KoalaSat committed Sep 23, 2022
1 parent fc782f0 commit 55358d8
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Android Build
on:
workflow_dispatch:
workflow_call:
inputs:
semver:
required: true
type: string
push:
branches: [ "main" , "android-webview-app-ts"]
branches: [ "main" ]
paths: [ "mobile", "frontend" ]
pull_request:
branches: [ "main" , "android-webview-app-ts"]
branches: [ "main" ]
paths: [ "mobile", "frontend" ]

jobs:
Expand Down Expand Up @@ -37,26 +42,35 @@ jobs:
id: commit
uses: pr-mpt/actions-commit-hash@v1

- name: 'Upload APK Artifact'
- 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-${{ steps.commit.outputs.short }}.zip
path: mobile/android/app/build/outputs/apk/release/
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 }}
body_path: mobile/CHANGELOG.md
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 }}
Expand Down

0 comments on commit 55358d8

Please sign in to comment.