Liquibase DDL application #43
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: Liquibase DDL application | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ENVIRONMENT_NAME: | ||
required: true | ||
type: choice | ||
options: | ||
- dev | ||
- qa | ||
- int | ||
- dlvr | ||
- test | ||
- prod | ||
NAMESPACE: | ||
required: true | ||
type: choice | ||
options: | ||
- a12541-dev | ||
- a12541-test | ||
- a12541-prod | ||
TAG: | ||
required: false | ||
type: string | ||
default: latest | ||
jobs: | ||
ddl_deploy: | ||
uses: ./.github/workflows/openshift-deploy.yml | ||
Check failure on line 30 in .github/workflows/liquibase-ddl.yml GitHub Actions / Liquibase DDL applicationInvalid workflow file
|
||
with: | ||
MICROSERVICE_NAME: cirras-underwriting-liquibase | ||
ENVIRONMENT: ${{ inputs.ENVIRONMENT_NAME }} | ||
NAMESPACE: ${{ inputs.NAMESPACE }} | ||
TAG: ${{ inputs.TAG }} | ||