Deployment Frontend (DEV) #10
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
name: Deployment Frontend (DEV) | |
on: | |
workflow_dispatch: | |
inputs: | |
DEPLOY_APP_CUSTOMERS: | |
type: boolean | |
description: "(Customers) Enable customer app deployment" | |
default: true | |
schedule: | |
# Run once a day. 7PM UTC. | |
- cron: "0 19 * * *" | |
# Ensure that only one dev workflow runs at a time. | |
concurrency: | |
group: deployment-frontend-dev | |
cancel-in-progress: true | |
jobs: | |
fe-customers: | |
if: ${{ inputs.DEPLOY_APP_CUSTOMERS }} | |
uses: ./.github/workflows/deployment_customers_dev.yml |