Untitled

 avatar
unknown
plain_text
6 days ago
752 B
3
Indexable
name: DEPLOYMENT
run-name: ${{ github.workflow }} (${{ github.event.inputs.environment }}, ${{ github.ref_name }})

on:
  workflow_dispatch:
    inputs:
      environment:
        description: "Environment to Deploy"
        default: "dev"
        type: choice
        required: true
        options:
          - "uat"
          - "dev"
env:
  ARTIFACTORY_URL: ${{ secrets.ALOC }}
  ENVIRONMENT: ${{ inputs.environment }}

jobs:
  SDLC_Deploy:
    if: !cancelled()
    with:
        RUNNER_GROUP: 'EMUDEV'
        ENVIRONMENT: ${{ inputs.environment }}
         HELM_VALUES_FILE_NAME: "dev.yaml --set image.registry=${ARTIFACTORY_URL} --set image.repository=public-local/com/bc --set image.tag=${{ github.ref_name }}"
         
Editor is loading...
Leave a Comment