diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 597f020..7f445b3 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -2,12 +2,12 @@ # This workflow deploys your application to Kubernetes cluster # Trigger: After successful CI build or manual dispatch -name: CD - Deploy to Kubernetes +name: CD # Trigger configuration - automatic after CI success, manual dispatch available on: workflow_run: - workflows: ["CI - Build and Push"] + workflows: ["CI"] types: - completed branches: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8571c4d..18dc8a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ # This workflow builds and pushes Docker images to your private registry # Trigger: Push to dev branch or manual dispatch -name: CI - Build and Push +name: CI # Trigger configuration - automatic on dev push, manual dispatch available on: