-
Notifications
You must be signed in to change notification settings - Fork 718
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Setup application modules (#2760)
- Loading branch information
1 parent
d8aba05
commit 21562c3
Showing
218 changed files
with
11,170 additions
and
60,484 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,65 @@ | ||
# This workflow is designed to automate the process of building and deploying a Kotlin/JS web application to GitHub Pages. | ||
# It ensures that whenever changes are merged into the dev branch or when manually triggered, the web application is built, | ||
# packaged, and deployed to the GitHub Pages environment, making it accessible online. | ||
|
||
# Key Features: | ||
# - Automated web application build using Kotlin/JS | ||
# - Deployment to GitHub Pages | ||
# - Supports configurable web project module name | ||
# - Manages deployment concurrency and environment settings | ||
# - Provides secure deployment with proper permissions | ||
|
||
# Prerequisites: | ||
# - Kotlin Multiplatform/JS project configured with Gradle | ||
# - Web module set up for browser distribution | ||
# - Java 17 or compatible version | ||
# - GitHub Pages enabled in repository settings | ||
|
||
# Workflow Configuration: | ||
# - Requires input of `web_package_name` to specify the web project module | ||
# - Uses Windows runner for build process | ||
# - Leverages GitHub Actions for build, pages configuration, and deployment | ||
|
||
# Workflow Triggers: | ||
# - Can be manually called from other workflows | ||
# - Supports workflow_call for reusability across projects | ||
|
||
# Deployment Process: | ||
# 1. Checkout repository code | ||
# 2. Set up Java development environment | ||
# 3. Build Kotlin/JS web application | ||
# 4. Configure GitHub Pages | ||
# 5. Upload built artifacts | ||
# 6. Deploy to GitHub Pages | ||
|
||
# https://github.com/openMF/mifos-mobile-github-actions/blob/main/.github/workflows/build-and-deploy-site.yaml | ||
|
||
# ############################################################################## | ||
# DON'T EDIT THIS FILE UNLESS NECESSARY # | ||
# ############################################################################## | ||
|
||
name: Build And Deploy Web App | ||
|
||
# Trigger conditions for the workflow | ||
on: | ||
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: 'cmp-web' # <-- Change with your web package name |
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,15 @@ | ||
name: Cleanup Cache | ||
|
||
on: | ||
pull_request: | ||
types: [ closed ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
cleanup: | ||
uses: openMF/mifos-mobile-github-actions/.github/workflows/cache-cleanup.yaml@main | ||
with: | ||
cleanup_pr: ${{ github.event_name == 'pull_request' && github.event.repository.private == true }} | ||
cleanup_all: ${{ github.event_name == 'workflow_dispatch' }} | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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,66 @@ | ||
# Automated Monthly Release Versioning Workflow | ||
# ============================================ | ||
|
||
# Purpose: | ||
# - Automatically create consistent monthly version tags | ||
# - Implement a calendar-based versioning strategy | ||
# - Facilitate easy tracking of monthly releases | ||
|
||
# Versioning Strategy: | ||
# - Tag format: YYYY.MM.0 (e.g., 2024.01.0 for January 2024) | ||
# - First digit: Full year | ||
# - Second digit: Month (01-12) | ||
# - Third digit: Patch version (starts at 0, allows for potential updates) | ||
|
||
# Key Features: | ||
# - Runs automatically on the first day of each month at 3:30 AM UTC | ||
# - Can be manually triggered via workflow_dispatch | ||
# - Uses GitHub Actions to generate tags programmatically | ||
# - Provides a predictable and systematic versioning approach | ||
|
||
# Prerequisites: | ||
# - Repository configured with GitHub Actions | ||
# - Permissions to create tags | ||
# - Access to actions/checkout and tag creation actions | ||
|
||
# Workflow Triggers: | ||
# - Scheduled monthly run | ||
# - Manual workflow dispatch | ||
# - Callable from other workflows | ||
|
||
# Actions Used: | ||
# 1. actions/checkout@v4 - Checks out repository code | ||
# 2. josStorer/get-current-time - Retrieves current timestamp | ||
# 3. rickstaa/action-create-tag - Creates Git tags | ||
|
||
# Example Generated Tags: | ||
# - 2024.01.0 (January 2024 initial release) | ||
# - 2024.02.0 (February 2024 initial release) | ||
# - 2024.02.1 (Potential patch for February 2024) | ||
|
||
# https://github.com/openMF/mifos-mobile-github-actions/blob/main/.github/workflows/monthly-version-tag.yaml | ||
|
||
# ############################################################################## | ||
# DON'T EDIT THIS FILE UNLESS NECESSARY # | ||
# ############################################################################## | ||
|
||
name: Tag Monthly Release | ||
|
||
on: | ||
# Allow manual triggering of the workflow | ||
workflow_dispatch: | ||
# Schedule the workflow to run monthly | ||
schedule: | ||
# Runs at 03:30 UTC on the first day of every month | ||
# Cron syntax: minute hour day-of-month month day-of-week | ||
- cron: '30 3 1 * *' | ||
|
||
concurrency: | ||
group: "monthly-release" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
monthly_release: | ||
name: Tag Monthly Release | ||
uses: openMF/mifos-mobile-github-actions/.github/workflows/monthly-version-tag.yaml@main | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.