Skip to content

Commit

Permalink
chore: Added Firebase & Web Build Publish Actions (openMF#1835)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
niyajali authored Dec 14, 2024
1 parent 61bf530 commit 5c8678b
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/deploy-android-app-to-firebase.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish Android App on Firebase
on:
workflow_dispatch:


jobs:
publish_android_app_on_firebase:
runs-on: macos-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Publish Android App on Firebase
uses: openMF/[email protected]
with:
android_package_name: 'mifospay-android'

keystore_file: ${{ secrets.ORIGINAL_KEYSTORE_FILE }}
keystore_password: ${{ secrets.ORIGINAL_KEYSTORE_FILE_PASSWORD }}
key_alias: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS }}
key_password: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS_PASSWORD }}

google_services: ${{ secrets.GOOGLESERVICES }}
firebase_creds: ${{ secrets.FIREBASECREDS }}

github_token: ${{ secrets.GITHUB_TOKEN }}
target_branch: 'dev'




29 changes: 29 additions & 0 deletions .github/workflows/deploy-android-app-to-pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish Web App

on:
workflow_dispatch:

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

permissions:
contents: read # Read repository contents
pages: write # Write to GitHub Pages
id-token: write # Write authentication tokens

jobs:
build_web_app:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Build & Publish Web App
uses: openMF/[email protected]
id: deployment
with:
web_package_name: 'mifospay-web'

0 comments on commit 5c8678b

Please sign in to comment.