Skip to content

Deploying parameters to nonprod workspace - dev #96

Deploying parameters to nonprod workspace - dev

Deploying parameters to nonprod workspace - dev #96

name: "Deploy: Parameters - Nonprod"
on:
workflow_dispatch:
inputs:
account:
description: Account to deploy
required: true
default: dev
type: choice
options:
- dev
- qa
- int
- ref
jobs:
deploy:
uses: ./.github/workflows/_deploy.yml
with:
account: ${{ inputs.account }}
workspace: ${{ inputs.account }}
scope: "per_account/${{ inputs.account }}/parameters"
secrets: inherit # pragma: allowlist secret
run-name: Deploying parameters to nonprod workspace - ${{ inputs.account }}