Skip to content

Commit

Permalink
chore: Configured Github Actions for CI
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
niyajali committed Dec 14, 2024
1 parent 8bf36ea commit 7d4f79e
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy-android-app-to-firebase.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish Android App on Firebase
on:
workflow_dispatch:


jobs:
publish_android_app_on_firebase:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Publish Android App on Firebase
uses: openMF/KMP-android-firebase-publish-action@v1.0.0
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/KMP-web-publish-action@v1.0.0
id: deployment
with:
web_package_name: 'mifospay-web'

0 comments on commit 7d4f79e

Please sign in to comment.