Skip to content

Commit

Permalink
chore - Testing Re-usable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
niyajali committed Dec 4, 2024
1 parent f22b159 commit efe532c
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/multi_platform_build_and_publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Multi-Platform(Re-Usable) App Build and Publish

on:
workflow_dispatch:
inputs:
release_type:
type: choice
options:
- internal # For internal testing purposes
- beta # For beta testing with external testers
default: internal
description: Release Type

publish_android:
type: boolean
default: false
description: Publish Android App On Play Store

permissions:
contents: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
multi_platform_build_and_publish:
name: Build Android Application
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build and Publish Android App
uses: niyajali/mifos-mobile-github-actions/.github/workflows/multi_platform_build_and_publish.yaml@main
secrets: inherit
with:
release_type: ${{ inputs.release_type }}
publish_android: ${{ inputs.publish_android }}
android_package_name: 'mifospay-android'

0 comments on commit efe532c

Please sign in to comment.