Vikas00230 triggered deploy to preprod pipeline for tag version 1.39.1 #10
This file contains hidden or 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 Release | |
| run-name: ${{ github.actor }} triggered deploy to ${{ github.event.inputs.env }} pipeline for tag version ${{ github.event.inputs.tag_version }} | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| env: | |
| description: 'Select environment to deploy' | |
| required: true | |
| default: 'preprod' | |
| type: choice | |
| options: | |
| - preprod | |
| - prod | |
| tag_version: | |
| description: 'Tag version to deploy' | |
| required: true | |
| default: '' | |
| jobs: | |
| deploy: | |
| uses: HDRUK/github-actions-templates/.github/workflows/deploy-release.yml@main | |
| with: | |
| env: ${{ github.event.inputs.env }} | |
| tag_version: ${{ github.event.inputs.tag_version }} | |
| chart_path: chart/gateway-medcat/Chart.yaml | |
| git_ref: main | |
| run_scan: true | |
| secrets: inherit |