Skip to content

Deploy Front

Deploy Front #3037

Workflow file for this run

name: Deploy Front
on:
workflow_dispatch:
inputs:
regions:
description: "Regions to deploy to"
required: true
default: "us-central1"
type: choice
options:
- "us-central1"
- "europe-west1"
- "all"
check_deployment_blocked:
description: "Check #deployment locks or force deploy"
required: true
default: "check"
type: choice
options:
- "check"
- "force (dangerous)"
concurrency:
group: deploy_front
cancel-in-progress: false
jobs:
deploy:
uses: ./.github/workflows/reusable-deploy.yml
with:
check_deployment_blocked: ${{ github.event.inputs.check_deployment_blocked == 'check' }}
component: front
dockerfile_path: ./front/Dockerfile
regions: ${{ github.event.inputs.regions }}
working_dir: ./
secrets: inherit