[SELC-4684] Fix: query to delete product in status ACTIVE (#102) #66
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: Deploy user ms | |
on: | |
push: | |
branches: | |
- main | |
- releases/* | |
paths: | |
- "apps/user-ms/**" | |
- "infra/container_apps/user-ms/**" | |
- "apps/pom.xml" | |
- "pom.xml" | |
workflow_dispatch: | |
inputs: | |
env: | |
type: choice | |
description: Environment | |
options: | |
- dev | |
- uat | |
- prod | |
jobs: | |
release_dev: | |
uses: ./.github/workflows/call_release_ms.yml | |
name: '[Dev] User ms Release' | |
if: ${{ (startsWith(github.ref_name, 'releases/') != true && inputs.env == null) || inputs.env == 'dev' }} | |
secrets: inherit | |
with: | |
environment: dev | |
tf_environment: dev | |
release_uat: | |
uses: ./.github/workflows/call_release_ms.yml | |
name: '[UAT] User ms Release' | |
if: ${{ (startsWith(github.ref_name, 'releases/') == true && inputs.env == null) || inputs.env == 'uat' }} | |
secrets: inherit | |
with: | |
environment: uat | |
tf_environment: uat | |
release_prod: | |
uses: ./.github/workflows/call_release_ms.yml | |
name: '[Prod] User ms Release' | |
if: ${{ inputs.env == 'prod' }} | |
secrets: inherit | |
with: | |
environment: prod | |
tf_environment: prod |