Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Configured to Use Reusable Workflow #1832

Merged
merged 11 commits into from
Dec 7, 2024
56 changes: 0 additions & 56 deletions .github/actions/create-release-notes/action.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/actions/create-release-number/action.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/actions/inflate-secrets/action.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/build-and-deploy-site.yaml
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'
Loading