Files
llink/.github/workflows/deploy-migrations.yml
2026-04-20 17:29:33 -07:00

23 lines
451 B
YAML

name: Deploy migrations
on:
workflow_dispatch:
inputs:
environment:
description: "Target environment"
required: true
type: choice
options: [dev, prod]
concurrency:
group: deploy-migrations-${{ inputs.environment }}
cancel-in-progress: false
jobs:
deploy:
uses: ./.github/workflows/_deploy.yml
with:
module: migrations
environment: ${{ inputs.environment }}
secrets: inherit