forked from openMF/mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
657 lines (565 loc) · 20.4 KB
/
build_and_publish_on_platforms.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# Workflow name indicating its purpose
name: Multi-Platform App Build and Publish
# Trigger configuration
on:
# Manual trigger through GitHub Actions UI with configurable inputs
workflow_dispatch:
inputs:
# Release channel selection (internal/beta)
release_type:
type: choice
options:
- internal # For internal testing purposes
- beta # For beta testing with external testers
default: internal
description: Release Type
# Toggle for Android Play Store publishing
publish_android:
type: boolean
default: false
description: Publish Android App On Play Store
# Toggle for iOS App Store publishing
publish_ios:
type: boolean
default: false
description: Publish iOS App On App Store
# Toggle for Desktop app publishing (Windows/macOS/Linux)
publish_desktop:
type: boolean
default: false
description: Publish Desktop Apps On App Store
# Toggle for Web app deployment
publish_web:
type: boolean
default: true
description: Publish Web App
# Toggle for iOS build process
# Separated from publishing to allow building without deployment
build_ios:
type: boolean
default: false
description: Build iOS App
# Repository-level permissions configuration
permissions:
# Grant read/write access to repository contents for deployment
contents: write
# Concurrency management configuration
# Controls how multiple workflow runs are handled
concurrency:
# Uses "pages" group to coordinate with GitHub Pages deployments
group: "pages"
# When false, new runs are queued instead of cancelling running ones
# This ensures deployment stability and ordered releases
cancel-in-progress: false
# Job definitions for different platforms
jobs:
# Android Build Job
# Handles compilation and APK generation for Android platform
build_android:
name: Build Android Application
runs-on: ubuntu-latest
steps:
# Check out repository code
- name: Checkout
uses: actions/checkout@v4
# Setup Java development environment
- name: Set up JDK 17
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17'
# Configure Gradle build tool
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
# Cache Gradle dependencies to speed up builds
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.konan
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
# Decrypt and prepare required secrets for signing
- uses: ./.github/actions/inflate-secrets
name: Inflate Secrets
with:
keystore: ${{ secrets.ORIGINAL_KEYSTORE_FILE }}
google-services: ${{ secrets.GOOGLESERVICES }}
playstore-creds: ${{ secrets.PLAYSTORECREDS }}
firebase-creds: ${{ secrets.FIREBASECREDS }}
# Build signed release APK
- name: Build Release
env:
KEYSTORE_PASSWORD: ${{ secrets.ORIGINAL_KEYSTORE_FILE_PASSWORD }}
KEYSTORE_ALIAS: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS }}
KEYSTORE_ALIAS_PASSWORD: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS_PASSWORD }}
VERSION_CODE: ${{ steps.rel_number.outputs.version-code }}
run: |
./gradlew :mifospay-android:assembleRelease
# Save built APKs as artifacts
- name: Upload Android Artifact
uses: actions/upload-artifact@v4
with:
name: android-app
retention-days: 1
compression-level: 9
path: |
./mifospay-android/build/outputs/apk/demo/release/mifospay-android-demo-release.apk
./mifospay-android/build/outputs/apk/prod/release/mifospay-android-prod-release.apk
# Firebase Distribution Job for Android
# Handles deployment to Firebase App Distribution for testing
publish_android_on_firebase:
name: Deploy Android App On Firebase
needs: [ build_android, generate_release_info ]
runs-on: macos-latest
steps:
# Basic setup steps
- name: Checkout
uses: actions/checkout@v4
# Setup Java environment
- name: Set up JDK 17
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17'
# Configure Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
# Setup Ruby for Fastlane automation
- name: Configure Ruby
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: true
# Install Fastlane and required plugins for deployment automation
- name: Install Fastlane
run: |
gem install bundler:2.2.27
bundle install --jobs 4 --retry 3
bundle exec fastlane add_plugin firebase_app_distribution
bundle exec fastlane add_plugin increment_build_number
# Prepare necessary secrets
- uses: ./.github/actions/inflate-secrets
name: Inflate Secrets
with:
keystore: ${{ secrets.ORIGINAL_KEYSTORE_FILE }}
google-services: ${{ secrets.GOOGLESERVICES }}
playstore-creds: ${{ secrets.PLAYSTORECREDS }}
firebase-creds: ${{ secrets.FIREBASECREDS }}
# Retrieve built Android artifacts
- name: Download Android Artifact
uses: actions/download-artifact@v4
with:
name: android-app
path: ./android-artifacts
# Debug: List downloaded artifacts
- name: List downloaded artifacts
run: |
ls -R ./android-artifacts
# Get changelog for Firebase distribution
- name: Download Beta Changelog
uses: actions/download-artifact@v4
with:
name: beta-changelog
# Organize files for Firebase deployment
- name: Move APK to build directory
run: |
mkdir -p ./mifospay-android/build/outputs/apk/prod/release/
mv ./android-artifacts/prod/release/mifospay-android-prod-release.apk ./mifospay-android/build/outputs/apk/prod/release/
mv ./changelogBeta ./mifospay-android/build/outputs/
# Deploy to Firebase App Distribution
- name: ☁️ Deploy to Firebase
env:
VERSION_CODE: ${{ needs.generate_release_info.outputs.version_code }}
run: bundle exec fastlane android deploy_on_firebase
# Play Store Publishing Job
# Handles deployment to Google Play Store
publish_android_on_playstore:
name: Publish Android App On Play Store
needs: [ build_android, generate_release_info ]
if: inputs.publish_android
runs-on: macos-latest
steps:
# Checkout with full history for versioning
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Setup Java environment
- name: Set up JDK 17
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17'
# Setup Ruby for Fastlane
- name: Configure Ruby
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: true
# Install Fastlane and plugins for Play Store deployment
- name: Install Fastlane
run: |
gem install bundler:2.2.27
bundle install --jobs 4 --retry 3
bundle exec fastlane add_plugin firebase_app_distribution
bundle exec fastlane add_plugin increment_build_number
# Setup Gradle build tool
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
# Prepare necessary secrets
- uses: ./.github/actions/inflate-secrets
name: Inflate Secrets
with:
keystore: ${{ secrets.UPLOAD_KEYSTORE_FILE }}
google-services: ${{ secrets.GOOGLESERVICES }}
playstore-creds: ${{ secrets.PLAYSTORECREDS }}
firebase-creds: ${{ secrets.FIREBASECREDS }}
# Build Android App Bundle for Play Store
- name: Build Release
env:
KEYSTORE_PASSWORD: ${{ secrets.UPLOAD_KEYSTORE_FILE_PASSWORD }}
KEYSTORE_ALIAS: ${{ secrets.UPLOAD_KEYSTORE_ALIAS }}
KEYSTORE_ALIAS_PASSWORD: ${{ secrets.UPLOAD_KEYSTORE_ALIAS_PASSWORD }}
VERSION_CODE: ${{ needs.generate_release_info.outputs.version_code }}
run: |
./gradlew :mifospay-android:bundleRelease
# Save AAB files as artifacts
- name: Archive Build
uses: actions/upload-artifact@v4
with:
name: release-aabs
path: ./**/*.aab
# Deploy to Play Store Internal testing track
- name: Deploy to Playstore Internal
run: bundle exec fastlane deploy_internal
# Promote to beta if specified
- name: Promote Internal to Beta
if: github.event.inputs.release_type == 'beta'
run: bundle exec fastlane promote_to_beta
# iOS Build Job
# Handles compilation and IPA generation for iOS platform
build_ios:
name: Build iOS App
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
# Setup Ruby for Fastlane
- name: Configure Ruby
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: true
# Install Fastlane and plugins for iOS automation
- name: Install Fastlane
run: |
gem install bundler:2.2.27
bundle install --jobs 4 --retry 3
bundle exec fastlane add_plugin firebase_app_distribution
bundle exec fastlane add_plugin increment_build_number
# Build iOS app if enabled
- name: Build iOS App
if: inputs.build_ios
run: bundle exec fastlane ios build_ios
# Save IPA as artifact
- name: Upload iOS Artifact
if: inputs.build_ios
uses: actions/upload-artifact@v4
with:
name: ios-app
retention-days: 1
compression-level: 9
path: mifospay-ios/mifospay-ios-app.ipa
# Firebase Distribution Job for iOS
# Handles deployment to Firebase App Distribution for iOS testing
publish_ios_app_to_firebase:
name: Publish iOS App On Firebase
if: inputs.publish_ios
needs: [ build_ios, generate_release_info ]
runs-on: macos-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
# Setup Ruby for Fastlane
- name: Configure Ruby
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: true
# Install Fastlane and plugins
- name: Install Fastlane
run: |
gem install bundler:2.2.27
bundle install --jobs 4 --retry 3
bundle exec fastlane add_plugin firebase_app_distribution
bundle exec fastlane add_plugin increment_build_number
# Get iOS app artifact
- name: Download iOS App
uses: actions/download-artifact@v4
with:
name: ios-app
# Get changelog for Firebase distribution
- name: Download Beta Changelog
uses: actions/download-artifact@v4
with:
name: beta-changelog
# Organize files for Firebase deployment
- name: Move APK to build directory
run: |
mv *.ipa ./mifospay-ios/
mv changelogBeta ./mifospay-android/build/outputs/
# Deploy to Firebase App Distribution
- name: Upload iOS App to Firebase Distribution
run: bundle exec fastlane ios deploy_on_firebase
# Debug: Show git status
- name: Print `git status`
run: git status
# App Center Publishing Job for iOS
# Handles deployment to App Center for iOS distribution
publish_ios_app_to_app_center:
needs: [ build_ios, generate_release_info ]
name: Publish iOS App On App Center
if: inputs.publish_ios
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
# Get iOS app artifact
- name: Download iOS Artifact
uses: actions/download-artifact@v4
with:
name: ios-app
# Get changelog for App Center
- name: Download Changelog
uses: actions/download-artifact@v4
with:
name: git-changelog
# TODO: Implement App Store publishing
# Desktop Build Job
# Handles compilation for Windows, macOS, and Linux platforms
build_desktop:
name: Build Desktop App
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
# Setup Gradle build tool
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
# Build desktop app for current OS
- name: Build Desktop App
env:
NOTARIZATION_APPLE_ID: ${{ secrets.NOTARIZATION_APPLE_ID }}
NOTARIZATION_PASSWORD: ${{ secrets.NOTARIZATION_PASSWORD }}
NOTARIZATION_TEAM_ID: ${{ secrets.NOTARIZATION_TEAM_ID }}
run: ./gradlew packageReleaseDistributionForCurrentOS
# Save Windows artifacts (EXE and MSI)
- name: Upload Windows Apps
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: desktop-app-${{ matrix.os }}
retention-days: 1
compression-level: 9
path: |
./mifospay-desktop/build/compose/binaries/main-release/exe/*.exe
./mifospay-desktop/build/compose/binaries/main-release/msi/*.msi
# Save Linux artifact (DEB)
- name: Upload Linux App
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
with:
name: desktop-app-${{ matrix.os }}
retention-days: 1
compression-level: 9
path: './mifospay-desktop/build/compose/binaries/main-release/deb/*.deb'
# Save macOS artifact (DMG)
- name: Upload MacOS App
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: desktop-app-${{ matrix.os }}
retention-days: 1
compression-level: 9
path: './mifospay-desktop/build/compose/binaries/main-release/dmg/*.dmg'
# Desktop Publishing Job
# Handles publishing desktop apps to various stores
publish_desktop:
name: Publish Desktop App
needs: [ build_desktop ]
if: inputs.publish_desktop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Get all desktop artifacts
- name: Download Desktop Artifacts
uses: actions/download-artifact@v4
with:
pattern: desktop-app-*
path: desktop-apps
# TODO: Implement desktop store publishing
# Debug: Show git status
- name: Print `git status`
run: git status
# Web Build Job
# Handles compilation of web application using Kotlin/JS
build_web:
name: Build Web Application
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
# Setup Java environment
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
# Cache Gradle dependencies
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.konan
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
# Build web app using Kotlin/JS
- name: Build Web(JS) App
run: ./gradlew jsBrowserDistribution
# Save web app as artifact
- name: Upload Web Artifact
uses: actions/upload-artifact@v4
with:
name: web-app
path: './mifospay-web/build/dist/js/productionExecutable'
# Web Publishing Job
# Handles deployment to GitHub Pages
publish_web:
name: Publish Web App
needs: [ build_web ]
if: inputs.publish_web
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
id-token: write
pages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
# Get web app artifact
- name: Download Web Artifact
uses: actions/download-artifact@v4
with:
name: web-app
path: ./web-app-content
# Configure GitHub Pages
- name: Setup Pages
uses: actions/configure-pages@v5
# Upload web app to GitHub Pages
- name: Upload static files as artifact
uses: actions/upload-pages-artifact@v3
with:
path: './web-app-content'
# Deploy to GitHub Pages
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
# Release Info Generation Job
# Creates version numbers and release notes
generate_release_info:
name: Generate Release Info
runs-on: ubuntu-latest
outputs:
version: ${{ steps.rel_number.outputs.version }}
version_code: ${{ steps.rel_number.outputs.version-code }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Setup Java environment
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
# Configure Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
# Generate version number
- uses: ./.github/actions/create-release-number
name: Create Release Number
id: rel_number
# Create release notes
- uses: ./.github/actions/create-release-notes
name: Create Release Notes
with:
tag-name: ${{ steps.rel_number.outputs.version }}
gh-token: ${{ secrets.GITHUB_TOKEN }}
# Save GitHub changelog
- name: Upload GitHub Changelog
uses: actions/upload-artifact@v4
with:
name: git-changelog
path: './mifospay-android/build/outputs/changelogGithub'
# Save beta changelog
- name: Upload Beta Changelog
uses: actions/upload-artifact@v4
with:
name: beta-changelog
path: './mifospay-android/build/outputs/changelogBeta'
# GitHub Release Job
# Creates GitHub release with all built artifacts
github_release:
name: Create Github Release
needs: [ build_android, build_desktop, build_web, build_ios, generate_release_info ]
if: inputs.release_type == 'beta'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Get all build artifacts
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
path: ./all-artifacts
# Debug: Show downloaded files
- name: Display structure of downloaded files
run: ls -R ./all-artifacts
# Create ZIP archive of web app
- name: Archive Web Build
shell: pwsh
run: |
Compress-Archive -Path './all-artifacts/web-app/*' -DestinationPath './all-artifacts/mifospay-web-app.zip'
# Rename Ubuntu desktop artifact for consistency
- name: Rename Ubuntu Desktop Artifact
run: |
mv ./all-artifacts/desktop-app-ubuntu-latest/mifoswallet_1.0.0-1_amd64.deb ./all-artifacts/desktop-app-ubuntu-latest/MifosWallet-1.0.0.deb
# Get changelog for release
- name: Download Git Changelog
uses: actions/download-artifact@v4
with:
name: git-changelog
# Create GitHub pre-release with all artifacts
- name: Create Github Pre-Release
uses: softprops/[email protected]
with:
tag_name: ${{ needs.generate_release_info.outputs.version }}
body_path: ./all-artifacts/git-changelog/changelogGithub
draft: false
prerelease: true
files: |
./all-artifacts/android-app/prod/release/mifospay-android-prod-release.apk
./all-artifacts/android-app/demo/release/mifospay-android-demo-release.apk
./all-artifacts/desktop-app-windows-latest/exe/MifosWallet-1.0.0.exe
./all-artifacts/desktop-app-windows-latest/msi/MifosWallet-1.0.0.msi
./all-artifacts/desktop-app-macos-latest/MifosWallet-1.0.0.dmg
./all-artifacts/desktop-app-ubuntu-latest/MifosWallet-1.0.0.deb
./all-artifacts/mifospay-web-app.zip