Skip to content

Deploy App Manually

Deploy App Manually #3

Workflow file for this run

name: Deploy App Manually
on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to deploy from'
required: true
default: 'main'
type: string
environment:
description: 'Environment to deploy to'
required: true
default: 'prd'
type: choice
options:
- prd
- dev
jobs:
deploy_dev:
name: Deploy dev
uses: ./.github/workflows/terraform-pipeline.yml
secrets: inherit
with:
branch: ${{ github.event.inputs.branch }}
environment: ${{ github.event.inputs.environment }}
destroy: false