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.
- Loading branch information
Showing
36 changed files
with
202 additions
and
295 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
13 changes: 13 additions & 0 deletions
13
.github/mockFirebaseAppDistributionServiceCredentialsFile.json
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,13 @@ | ||
{ | ||
"type": "service_account", | ||
"project_id": "mifoswallet-baa0c", | ||
"private_key_id": "private_key_id", | ||
"private_key": "private_key", | ||
"client_email": "client_email", | ||
"client_id": "111380693391682832489", | ||
"auth_uri": "https://accounts.google.com/o/oauth2/auth", | ||
"token_uri": "https://oauth2.googleapis.com/token", | ||
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", | ||
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/firebase-adminsdk-w3hi9%40mifoswallet-baa0c.iam.gserviceaccount.com", | ||
"universe_domain": "googleapis.com" | ||
} |
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,65 @@ | ||
name: Publish Web App | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build_web_app: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 17 | ||
|
||
- name: Build Web(JS) App | ||
run: ./gradlew jsBrowserDistribution | ||
|
||
- name: Copy build files to docs | ||
run: | | ||
# Create docs directory if it doesn't exist | ||
mkdir -p docs | ||
# Clear existing contents of docs directory | ||
rm -rf docs/* | ||
# Copy all contents from build directory to docs | ||
cp -r ./mifospay-web/build/dist/js/productionExecutable/* docs/ | ||
# Add a .nojekyll file to bypass Jekyll processing | ||
touch .nojekyll | ||
- name: Commit and push if changed | ||
run: | | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "github-actions[bot]" | ||
# Configure git to be quiet | ||
git config --global advice.pushUpdateRejected false | ||
git config --global advice.pushNonFFCurrent false | ||
git config --global advice.pushNonFFMatching false | ||
git config --global advice.pushAlreadyExists false | ||
# Add and commit silently | ||
git add docs .nojekyll > /dev/null 2>&1 | ||
git commit --quiet -m "Update docs folder" > /dev/null 2>&1 || true | ||
# Force push silently | ||
git push --force-with-lease --quiet origin HEAD > /dev/null 2>&1 | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v5 | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
...ore-proto/src/commonMain/kotlin/proto/org/mifospay/core/datastore/proto/client_info.proto
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...store-proto/src/commonMain/kotlin/proto/org/mifospay/core/datastore/proto/role_info.proto
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...store-proto/src/commonMain/kotlin/proto/org/mifospay/core/datastore/proto/user_info.proto
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.