Skip to content

[SELC-5643] refactor: Change endpoint /geographicTaxonomy in order to… #118

[SELC-5643] refactor: Change endpoint /geographicTaxonomy in order to…

[SELC-5643] refactor: Change endpoint /geographicTaxonomy in order to… #118

name: Release - PNPG dashboard-backend
on:
push:
branches:
- main
- releases/*
paths:
- 'app/**'
- 'connector/**'
- 'connector-api/**'
- 'core/**'
- 'infra/**'
- 'web/**'
- 'pom.xml'
workflow_dispatch:
inputs:
env:
type: choice
description: Environment
options:
- dev
- uat
- prod
jobs:
release_dev:
uses: pagopa/selfcare-commons/.github/workflows/call_release_docker.yml@main
name: '[Dev] DashboardBackend Release'
if: ${{ (startsWith(github.ref_name, 'releases/') != true && inputs.env == null) || inputs.env == 'dev' }}
secrets: inherit
with:
environment: dev
tf_environment: dev-pnpg
dir: 'infra/container_apps'
release_uat:
uses: pagopa/selfcare-commons/.github/workflows/call_release_docker.yml@main
name: '[UAT] DashboardBackend Release'
if: ${{ (startsWith(github.ref_name, 'releases/') == true && inputs.env == null) || inputs.env == 'uat' }}
secrets: inherit
with:
environment: uat
tf_environment: uat-pnpg
dir: 'infra/container_apps'
release_prod:
uses: pagopa/selfcare-commons/.github/workflows/call_release_docker.yml@main
name: '[Prod] DashboardBackend Release'
if: ${{ inputs.env == 'prod' }}
secrets: inherit
with:
environment: prod
tf_environment: prod-pnpg
dir: 'infra/container_apps'