CI/CD Concept
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
- Build Pipeline
- First we make build pipeline, basically this pipeline get our code from Rep.
- This will run npm install , npm run build, unit-testing and other commands
- After making soft build, it ready code for deployment
- Release Pipeline
- This is connected with Build Pipeline
- It get executable code from build pipeline, called artifacts
- Download zip from Build PL.
- And send this code to other environment/server
- After it will run some script file, that contains linux or that server commands,
and perform running action there