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.
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
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.
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.