Skip to content

Commit 71e233d

Browse files
authored
Added multi-platform-build-and-publish.yml Workflow
1 parent 98e3948 commit 71e233d

File tree

1 file changed

+129
-0
lines changed

1 file changed

+129
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
# GitHub Actions Workflow for Kotlin Multi-Platform Application Deployment
2+
#
3+
# OVERVIEW:
4+
# This workflow supports building and publishing applications across multiple platforms:
5+
# - Android (APK/AAB)
6+
# - iOS (IPA)
7+
# - Desktop (EXE, MSI, DMG, DEB)
8+
# - Web (GitHub Pages)
9+
#
10+
# PREREQUISITES:
11+
# Ensure your project is configured with:
12+
# - Gradle build system
13+
# - Kotlin Multiplatform Project with Android, iOS, Desktop, and Web modules
14+
# - Fastlane for deployment automation
15+
# - Separate modules/package names for each platform
16+
#
17+
# REQUIRED SECRETS:
18+
# Configure the following secrets in GitHub repository settings:
19+
# - ORIGINAL_KEYSTORE_FILE: Base64 encoded Android release keystore
20+
# - ORIGINAL_KEYSTORE_FILE_PASSWORD: Keystore password
21+
# - ORIGINAL_KEYSTORE_ALIAS: Keystore alias
22+
# - ORIGINAL_KEYSTORE_ALIAS_PASSWORD: Keystore alias password
23+
24+
# - UPLOAD_KEYSTORE_FILE: Base64 encoded Android release keystore
25+
# - UPLOAD_KEYSTORE_FILE_PASSWORD: Keystore password
26+
# - UPLOAD_KEYSTORE_ALIAS: Keystore alias
27+
# - UPLOAD_KEYSTORE_ALIAS_PASSWORD: Keystore alias password
28+
29+
# - GOOGLESERVICES: Google Services configuration JSON
30+
# - PLAYSTORECREDS: Play Store service account credentials
31+
# - FIREBASECREDS: Firebase distribution credentials
32+
33+
# - NOTARIZATION_APPLE_ID: Apple ID for macOS app notarization
34+
# - NOTARIZATION_PASSWORD: Notarization password
35+
# - NOTARIZATION_TEAM_ID: Apple developer team ID
36+
37+
# WORKFLOW INPUTS:
38+
# - release_type: 'internal' (default) or 'beta'
39+
# - target_branch: Branch to use for release (default: 'dev')
40+
# - android_package_name: Name of Android module
41+
# - ios_package_name: Name of iOS module
42+
# - desktop_package_name: Name of desktop module
43+
# - web_package_name: Name of web module
44+
# - publish_android: Enable/disable Android Play Store publishing
45+
# - build_ios: Enable/disable iOS build
46+
# - publish_ios: Enable/disable iOS App Store publishing
47+
# - publish_desktop: Enable/disable desktop app publishing
48+
# - publish_web: Enable/disable web app deployment (default: true)
49+
50+
# USAGE:
51+
# 1. Ensure all required secrets are configured
52+
# 2. Customize package names in workflow inputs
53+
# 3. Toggle platform-specific publishing flags
54+
# 4. Trigger workflow manually or via GitHub Actions UI
55+
56+
# https://github.com/openMF/mifos-mobile-github-actions/blob/main/.github/workflows/multi-platform-build-and-publish.yaml
57+
58+
# ##############################################################################
59+
# DON'T EDIT THIS FILE UNLESS NECESSARY #
60+
# ##############################################################################
61+
name: Multi-Platform Build and Publish
62+
63+
on:
64+
workflow_dispatch:
65+
inputs:
66+
release_type:
67+
type: choice
68+
options:
69+
- internal
70+
- beta
71+
default: internal
72+
description: Release Type
73+
74+
target_branch:
75+
type: string
76+
default: 'dev'
77+
description: 'Target branch for release'
78+
79+
publish_android:
80+
type: boolean
81+
default: false
82+
description: Publish Android App On Play Store
83+
84+
publish_ios:
85+
type: boolean
86+
default: false
87+
description: Publish iOS App On App Store
88+
89+
publish_desktop:
90+
type: boolean
91+
default: false
92+
description: Publish Desktop Apps On App Store
93+
94+
publish_web:
95+
type: boolean
96+
default: true
97+
description: Publish Web App
98+
99+
build_ios:
100+
type: boolean
101+
default: false
102+
description: Build iOS App
103+
104+
permissions:
105+
contents: write
106+
id-token: write
107+
pages: write
108+
109+
concurrency:
110+
group: "reusable"
111+
cancel-in-progress: false
112+
113+
jobs:
114+
multi_platform_build_and_publish:
115+
name: Multi-Platform Build and Publish
116+
uses: openMF/mifos-mobile-github-actions/.github/workflows/multi-platform-build-and-publish.yaml@main
117+
secrets: inherit
118+
with:
119+
release_type: ${{ inputs.release_type }}
120+
target_branch: ${{ inputs.target_branch }}
121+
android_package_name: 'mifospay-android' # <-- Change this to your android package name
122+
ios_package_name: 'mifospay-ios' # <-- Change this to your ios package name
123+
desktop_package_name: 'mifospay-desktop' # <-- Change this to your desktop package name
124+
web_package_name: 'mifospay-web' # <-- Change this to your web package name
125+
publish_android: ${{ inputs.publish_android }}
126+
build_ios: ${{ inputs.build_ios }}
127+
publish_ios: ${{ inputs.publish_ios }}
128+
publish_desktop: ${{ inputs.publish_desktop }}
129+
publish_web: ${{ inputs.publish_web }}

0 commit comments

Comments
 (0)