
Hi all,
Currently we're trying to do a simple Azure Pipeline that connects to a Microsoft Dynamics 365 Instance, then download a solution and commit it into our git repo. Here's where I am right now:
So far all steps run without problems, however, I have not been able to commit the downloaded solution(zip file) into our git repo, so my question would be:
Is there some kind of step I'm missing to commit that downloaded solution into our git repo?
At the end of the day, what we would like to do is get that solution(packaged), unpackage it and commit the files so we can track the changes in our git repo, all of this within the Pipeline. I know we have another step to extract the solution in Azure Pipelines, the thing is that it is not working as it never detects the downloaded solution, this is why I would like to see if I can do the first step(which would be to commit the solution) and then grab it in the unpackage step.
Last but not least, we will have another pipeline that will grab the unpackaged solution, package it, and deploy it into other lanes.
If there's a best approach for what we are looking for, I will really appreatiate any guidance.
Thanks in advance!