we are preparing our development/deployment process. In order to a nightly build we want to update templates and some content paths after a deployment automatically.
Updating file system is no problem and already running.
Is there any best practice to do this? Cant find any out of the box solution.
Powerhell script can placed in repository too. With params you can control the url and apikey within deployment process. The "-usebasicparsing" is important when you want to run this on a VisualStudio Teams deployment process.
Install package automatically after deployment
Hey,
we are preparing our development/deployment process. In order to a nightly build we want to update templates and some content paths after a deployment automatically.
Updating file system is no problem and already running.
Is there any best practice to do this? Cant find any out of the box solution.
Thanks Thobias
Solved.
For anyone who want to know how:
Take a look here: https://our.umbraco.org/projects/developer-tools/umport
Install via Umbraco Package Dialog on local and deployed Umbraco environment.
Configure *.config like the description in mentioned.
Check generated xml files into your repository
Build your project and publish the generated xml files from point 4 with your CI
Add a new deployment step to send a post request. For me its a powershell script. eg.:
Powerhell script can placed in repository too. With params you can control the url and apikey within deployment process. The "-usebasicparsing" is important when you want to run this on a VisualStudio Teams deployment process.
is working on a reply...