This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
[SELC-5058] Feat: Removed Api and method used to send event for contr… #109
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: Release - ms-core | |
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] Core ms Release' | |
if: ${{ (startsWith(github.ref_name, 'releases/') != true && inputs.env == null) || inputs.env == 'dev' }} | |
secrets: inherit | |
with: | |
environment: dev | |
tf_environment: dev | |
dir: 'infra/container_apps' | |
release_uat: | |
uses: pagopa/selfcare-commons/.github/workflows/call_release_docker.yml@main | |
name: '[UAT] Core ms Release' | |
if: ${{ (startsWith(github.ref_name, 'releases/') == true && inputs.env == null) || inputs.env == 'uat' }} | |
secrets: inherit | |
with: | |
environment: uat | |
tf_environment: uat | |
dir: 'infra/container_apps' | |
release_prod: | |
uses: pagopa/selfcare-commons/.github/workflows/call_release_docker.yml@main | |
name: '[Prod] Core ms Release' | |
if: ${{ inputs.env == 'prod' }} | |
secrets: inherit | |
with: | |
environment: prod | |
tf_environment: prod | |
dir: 'infra/container_apps' | |
promote_release: | |
name: 'Promote prerelase release' | |
runs-on: ubuntu-20.04 | |
needs: [release_prod] | |
steps: | |
- uses: pagopa/selfcare-commons/github-actions-template/promote-release@main | |
with: | |
github_path_token: ${{ secrets.GH_PAT_VARIABLES }} | |
release_version: ${{ vars.CURRENT_UAT_VERSION }} |