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

23 lines
436 B
YAML

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