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:
5
.github/workflows/pipeline.yml
vendored
5
.github/workflows/pipeline.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user