Skip to content

Commit

Permalink
HEAT-227: Update env-details
Browse files Browse the repository at this point in the history
  • Loading branch information
KalyanaVadlamani committed Apr 3, 2024
1 parent db3e621 commit ad509fe
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Deploy
on:
workflow_call:
inputs:
github_environment:
description: The name of the github environment for deployment secrets/Namespace
type: string
required: true
# github_environment:
# description: The name of the github environment for deployment secrets/Namespace
# type: string
# required: true
environment:
description: The name of the environment to deploy to (dev/prod)
type: string
Expand All @@ -18,20 +18,20 @@ on:

workflow_dispatch:
inputs:
github_environment:
description: The name of the github environment for deployment secrets/Namespace
type: choice
required: true
options:
- development
- production
# github_environment:
# description: The name of the github environment for deployment secrets/Namespace
# type: choice
# required: true
# options:
# - development
# - production
environment:
description: Environment
type: choice
required: true
options:
- development
- production
- dev
- prod
version:
description: Image version
type: string
Expand All @@ -44,7 +44,7 @@ jobs:
fail-fast: false

environment:
name: ${{ inputs.github_environment }}
name: ${{ inputs.environment }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit ad509fe

Please sign in to comment.