forked from openMF/mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Added Firebase & Web Build Publish Actions (openMF#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
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |