Skip to content

fix: PR deployment match error (#387) #127

fix: PR deployment match error (#387)

fix: PR deployment match error (#387) #127

Workflow file for this run

name: Build and Deploy to Prod
on:
push:
branches: [main]
paths-ignore:
- '.codacy.yaml'
- '.env.example'
- '.gitignore'
- 'compose.prod.yaml'
- 'compose.yaml'
- 'helios-example-realm.json'
- 'LICENSE'
- 'nginx.conf'
- 'openapitools.json'
- 'README.md'
- '.github/**'
- '.vscode/**'
- 'docs/**'
- 'keycloakify/**'
jobs:
validate-flyway:
uses: ./.github/workflows/flyway-validate.yml
build-prod-container:
needs: validate-flyway
uses: ./.github/workflows/build_docker.yml
secrets: inherit
deploy-prod-container:
needs: build-prod-container
uses: ./.github/workflows/deploy_docker.yml
secrets: inherit
with:
environment: production
client_image_tag: "latest"
application_server_image_tag: "latest"
webhook_listener_image_tag: "latest"