Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Release - ms-core

Release - ms-core #1

Workflow file for this run

name: Deploy core ms
on:
push:
branches:
- main
- releases/**
paths:
- '!./.devops/**'
- '!./.github/**'
- '!./.identity/**'
- '!./helm/**'
- '!**.md'
- '!./.**ignore'
- '!./infra/**'
- '!./.terraform-version'
- '!./CODEOWNERS'
workflow_dispatch:
jobs:
release_dev:
uses: ./.github/workflows/call_release_ms.yml
name: '[Dev] Core ms Release'
if: github.ref_name == 'main'
secrets: inherit
with:
environment: dev
release_uat:
uses: ./.github/workflows/call_release_ms.yml
name: '[UAT] Core ms Release'
if: startsWith(github.ref_name, 'releases/')
secrets: inherit
with:
environment: uat
release_prod:
uses: ./.github/workflows/call_release_ms.yml
name: '[Prod] Core ms Release'
if: startsWith(github.ref_name, 'releases/')
secrets: inherit
with:
environment: prod