Expand my Community achievements bar.

SOLVED

CICD pipeline Cloud manager

Avatar

Level 2

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.

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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.

 



View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

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.