Skip to content

Commit 5c8678b

Browse files
authored
chore: Added Firebase & Web Build Publish Actions (#1835)
* chore: Configured Github Actions for CI This commit introduces two new CI workflows: - **Publish Web App:** This workflow builds and deploys the web app to GitHub Pages. - **Publish Android App on Firebase:** This workflow builds and publishes the Android app to Firebase. * chore: Update Firebase Action Version & Added Permission * chore: Update Firebase Action Version & Added Permission
1 parent 61bf530 commit 5c8678b

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Publish Android App on Firebase
2+
on:
3+
workflow_dispatch:
4+
5+
6+
jobs:
7+
publish_android_app_on_firebase:
8+
runs-on: macos-latest
9+
permissions:
10+
contents: write
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Publish Android App on Firebase
18+
uses: openMF/[email protected]
19+
with:
20+
android_package_name: 'mifospay-android'
21+
22+
keystore_file: ${{ secrets.ORIGINAL_KEYSTORE_FILE }}
23+
keystore_password: ${{ secrets.ORIGINAL_KEYSTORE_FILE_PASSWORD }}
24+
key_alias: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS }}
25+
key_password: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS_PASSWORD }}
26+
27+
google_services: ${{ secrets.GOOGLESERVICES }}
28+
firebase_creds: ${{ secrets.FIREBASECREDS }}
29+
30+
github_token: ${{ secrets.GITHUB_TOKEN }}
31+
target_branch: 'dev'
32+
33+
34+
35+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish Web App
2+
3+
on:
4+
workflow_dispatch:
5+
6+
concurrency:
7+
group: "pages"
8+
cancel-in-progress: false
9+
10+
permissions:
11+
contents: read # Read repository contents
12+
pages: write # Write to GitHub Pages
13+
id-token: write # Write authentication tokens
14+
15+
jobs:
16+
build_web_app:
17+
environment:
18+
name: github-pages
19+
url: ${{ steps.deployment.outputs.page_url }}
20+
runs-on: windows-latest
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
25+
- name: Build & Publish Web App
26+
uses: openMF/[email protected]
27+
id: deployment
28+
with:
29+
web_package_name: 'mifospay-web'

0 commit comments

Comments
 (0)