CI/CD Documentation
Naming conventions for GitHub Actions:
workflow-*.yml
: Reusable workflowsci-cd-*.yml
: Workflows that are triggered by an eventdispatch-*.yml
: Workflows that are dispatchable
CI/CD Flowβ
1. Development & Merge Processβ
-
Development
- Create feature branch from
main
- Follow branch naming convention:
(feat|fix|docs|test|ci|chore|trivial)!?(\\(.*\\))?!?:.*
- Create PR against
main
- PR title must follow conventional commits format (validated by
ci-cd-pull-request-title.yml
) - Get code review and approval
- Merge to
main
- Create feature branch from
-
Main Branch Triggers
When code is merged tomain
, two parallel workflows are triggered:a. CI/CD Main (
ci-cd-main.yml
)- Automatically deploys to Test environment
- Runs full deployment including:
- Infrastructure if changed
- Applications if changed
- Runs tests
- Updates dependencies
b. Release Please (
ci-cd-release-please.yml
)- Checks if changes warrant a new release
- Either:
- Creates/updates release PR, or
- Builds and publishes Docker images if release is complete
2. Release & Deployment Flowβ
When Release is Created/Published:β
Three parallel workflows are triggered:
-
Production Dry Run (
ci-cd-prod-dry-run.yml
)- Validates production deployment configuration
- No actual deployment
- Early warning for potential production issues
-
Staging Deployment (
ci-cd-staging.yml
)- Deploys to staging (tt02) environment
- Full deployment including:
- Infrastructure updates
- Application deployment
- Database migrations
- SDK publishing
- End-to-end testing
-
YT01 Deployment (
ci-cd-yt01.yml
)- Deploys to YT01 environment
- Performance testing environment
- Full deployment similar to staging
Production Deploymentβ
- Manual Trigger Required (
ci-cd-prod.yml
) - Requires specific version input
- Full deployment process:
- Version verification
- Infrastructure deployment
- Application deployment
- Node logger publishing
- Version tracking updates
3. Environment Flowβ
Development β Main Branch β Test β [YT01 + Staging] β Production
β β β
Auto deploy Auto deploy Manual deploy
on merge on release with version
4. Environment Purposesβ
- Test: Automatic deployment target for all changes merged to main
- YT01: Performance test environment, automatically updated with releases
- Staging (tt02): Pre-production verification, automatically updated with releases
- Production: Production environment, requires manual deployment trigger
5. Manual Control Optionsβ
Available manual workflows for all environments:
dispatch-infrastructure.yml
: Infrastructure deploymentdispatch-apps.yml
: Application deployment
Using dispatch-apps.yml
β
The dispatch-apps.yml
workflow is responsible for deploying applications. To trigger this workflow:
- Navigate to the Actions tab in the GitHub repository.
- Select the
Dispatch Apps
workflow. - Click on "Run workflow".
- Fill in the required inputs:
- environment: Choose the target environment (
test
,yt01
,staging
, orprod
). - version: Specify the version to deploy. Could be git tag or a docker-tag published in packages.
- runMigration (optional): Indicate whether to run database migrations (
true
orfalse
).
- environment: Choose the target environment (
This workflow will handle the deployment of applications based on the specified parameters, ensuring that the correct version is deployed to the chosen environment.
Using dispatch-infrastructure.yml
β
The dispatch-infrastructure.yml
workflow is used for deploying infrastructure components. To use this workflow:
- Go to the Actions tab in the GitHub repository.
- Select the
Dispatch Infrastructure
workflow. - Click on "Run workflow".
- Provide the necessary inputs:
- environment: Select the environment you wish to deploy to (
test
,yt01
,staging
, orprod
). - version: Enter the version to deploy, which should correspond to a git tag. (e.g.,
1.23.4
).
- environment: Select the environment you wish to deploy to (
This workflow facilitates the deployment of infrastructure to the specified environment, using the version details provided.
6. Version Managementβ
- Release-please manages versioning based on conventional commits
- Versions are tracked in GitHub environment variables
- Separate tracking for infrastructure and applications
- Docker images tagged with release versions
- SDK and schema packages versioned with releases
Release Please is used to create releases, generate changelog and bumping version numbers.
CHANGELOG.md
and version.txt
are automatically updated and should not be changed manually.