Skip to content

Manual Build & Deploy #29

Manual Build & Deploy

Manual Build & Deploy #29

Workflow file for this run

name: Manual Build & Deploy
on:
workflow_dispatch:
inputs:
target:
description: 'The application target to deploy (e.g., backend, auth).'
required: true
type: string
version:
description: 'The specific version to deploy (e.g., v1.2.3). Defaults to latest if not provided.'
required: false
type: string
jobs:
trigger-build-and-deploy:
uses: ./.github/workflows/deploy-base.yml
with:
target: ${{ github.event.inputs.target }}
version: ${{ github.event.inputs.version || 'latest' }}
secrets: inherit