Multi-Platform(Re-Usable) App Build and Publish #5
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: 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: "reusable" | ||
cancel-in-progress: false | ||
jobs: | ||
multi_platform_build_and_publish: | ||
name: Build Android Application | ||
uses: niyajali/mifos-mobile-github-actions/.github/workflows/multi_platform_build_and_publish.yaml@main | ||
Check failure on line 29 in .github/workflows/multi_platform_build_and_publish.yaml GitHub Actions / Multi-Platform(Re-Usable) App Build and PublishInvalid workflow file
|
||
secrets: inherit | ||
with: | ||
release_type: ${{ inputs.release_type }} | ||
publish_android: ${{ inputs.publish_android }} | ||
android_package_name: 'mifospay-android' |