-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Configured to Use Reusable Workflow (#1832)
* chore - Testing Re-usable workflows * chore - Testing Re-usable workflows * chore - Testing Re-usable workflows * chore - Added Remaining Jobs * chore - Updated Pages Permission * chore - Updated Concurrency * chore - Added Remaining Workflows * chore - Fixed promote-to-production.yaml * chore - Fixed promote-to-production.yaml * chore - Removed Old Files
- Loading branch information
Showing
16 changed files
with
199 additions
and
1,454 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Build And Deploy Web App | ||
|
||
# Trigger conditions for the workflow | ||
on: | ||
pull_request: | ||
branches: [ "dev" ] | ||
types: [ closed ] | ||
workflow_dispatch: | ||
|
||
# Concurrency settings to manage multiple workflow runs | ||
# This ensures orderly deployment to production environment | ||
concurrency: | ||
group: "web-pages" | ||
cancel-in-progress: false | ||
|
||
permissions: | ||
contents: read # Read repository contents | ||
pages: write # Write to GitHub Pages | ||
id-token: write # Write authentication tokens | ||
pull-requests: write # Write to pull requests | ||
|
||
jobs: | ||
build_and_deploy_web: | ||
name: Build And Deploy Web App | ||
uses: openMF/mifos-mobile-github-actions/.github/workflows/build-and-deploy-site.yaml@main | ||
secrets: inherit | ||
with: | ||
web_package_name: 'mifospay-web' |
Oops, something went wrong.