Skip to content

task: add investigate-port-forwarding-broken #1098

task: add investigate-port-forwarding-broken

task: add investigate-port-forwarding-broken #1098

Workflow file for this run

name: Deploy Production
on:
push:
branches: [main]
paths-ignore:
- 'apps/www/**'
workflow_dispatch:
inputs:
skip_agent:
description: 'Skip VM Agent build and upload'
required: false
type: boolean
default: false
dry_run:
description: 'Preview changes without applying'
required: false
type: boolean
default: false
# Only one production deployment at a time, queue subsequent ones
concurrency:
group: deploy-production
cancel-in-progress: false
jobs:
deploy:
uses: ./.github/workflows/deploy-reusable.yml
with:
environment: production
skip_agent: ${{ inputs.skip_agent || false }}
dry_run: ${{ inputs.dry_run || false }}
secrets: inherit