chore: update CI/CD pipeline configuration for improved branch handling

- Renamed the CI/CD pipeline for clarity and consistency.
- Updated the branch triggers to include 'dev-*' for better integration of development branches.
- Removed the URL setting for the production environment to streamline the deployment process.
This commit is contained in:
2026-01-25 15:52:02 +03:00
parent 5a0c2d6942
commit fde1f14708

View File

@@ -1,8 +1,8 @@
name: CI/CD Pipeline
name: CI & CD pipeline
on:
push:
branches: [ main, develop, 'feature/**' ]
branches: [ main, 'develop', 'dev-*', 'feature/**' ]
pull_request:
branches: [ main, develop ]
@@ -70,7 +70,6 @@ jobs:
if: success() && github.ref == 'refs/heads/main'
environment:
name: production
url: https://${{ vars.SERVER_HOST || secrets.SERVER_HOST }}
steps:
- name: Checkout code