Hello @lavishvasuja
How frontend pipelines typically deploy changes in an AEMaaCS Environment :
1. Frontend developer customizes static code - Updates are made to CSS, JavaScript, images, and other assets in a dedicated module/folder (e.g., /ui.frontend).
2. Code is committed to Git - Changes are pushed to a feature/dev branch in a cloud-managed repository.
3. Cloud Manager Pipeline is triggered - The pipeline runs automatically (on commit) or manually.
4. Build step - Pipeline runs the build script (commonly npm run build) for the frontend project.
5. Static files generated - Build artifacts (from the dist folder) are produced.
6. Deploy step - Static files are uploaded to a CDN (outside of the AEM instance).
7. Site references are updated - AEM updates URLs to serve the new static resources.
8. No backend code deployed - This pipeline only handles frontend resources (CSS, JS, static assets) - not page content or backend code.
9. Fast and isolated - Changes via frontend pipeline are faster and independent of backend deployments.
For guides and implementation examples, see:
https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/implementing/developing/developing-with-front-end-pipelines
https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/sites/administering/site-creation/quick-site/pipeline-setup