CICD pipeline Cloud manager | Community
Skip to main content
December 12, 2023
Solved

CICD pipeline Cloud manager

  • December 12, 2023
  • 1 reply
  • 747 views

Can anyone guide how to transfer the code packages to adobe git repository from github repository for creating CI/CD pipeline.

If content transfer tool is the only way, what will be the steps which i should follow.

 

Thanks.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Raja_Reddy

Hi @reenijoe 

Set up your CI/CD pipeline in the Adobe environment(Stage/Prod), referencing the newly transferred code. switch checkout to develop branch and follow the below steps

-mvn versions:set -DnewVersion=0.0.000
-git add .
-git commit -m "change pom to Version=0.0.000for release"
-git push
-git checkout -b release/1.0.00
-git push
-git tag -a release_1.0.00 -m "release_1.0.00"
-git push origin release_1.0.00

-git checkout develop
-git push rem develop

After completing the above steps, you can open the Adobe pipeline and start the deployment stage.

 

1 reply

Raja_Reddy
Community Advisor
Raja_ReddyCommunity AdvisorAccepted solution
Community Advisor
December 22, 2023

Hi @reenijoe 

Set up your CI/CD pipeline in the Adobe environment(Stage/Prod), referencing the newly transferred code. switch checkout to develop branch and follow the below steps

-mvn versions:set -DnewVersion=0.0.000
-git add .
-git commit -m "change pom to Version=0.0.000for release"
-git push
-git checkout -b release/1.0.00
-git push
-git tag -a release_1.0.00 -m "release_1.0.00"
-git push origin release_1.0.00

-git checkout develop
-git push rem develop

After completing the above steps, you can open the Adobe pipeline and start the deployment stage.