This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
Manual Deploy #751
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manual Deploy | |
on: | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: "Environment" | |
type: environment # will be prod, dev, dev-green or dev-blue | |
required: true | |
default: dev-green | |
jobs: | |
deploy: | |
name: Deploy ${{ github.ref_name }} to OTP-${{ github.event.inputs.environment }} | |
uses: ./.github/workflows/use-deploy-ecs.yml | |
with: | |
deployment-env: ${{ github.event.inputs.environment }} | |
secrets: inherit |