CodeSharePaul
04/10/2024, 8:22 AMSebastiaan
04/10/2024, 8:27 AMSebastiaan
04/10/2024, 8:28 AMUmbraco.Deploy.Forms
package has been replaced with Umbraco.Forms.Deploy
package.skttl
04/10/2024, 8:39 AMSebastiaan
04/10/2024, 8:47 AMCodeSharePaul
04/10/2024, 9:06 AMCodeSharePaul
04/10/2024, 9:06 AMCodeSharePaul
04/10/2024, 9:06 AMCodeSharePaul
04/10/2024, 9:07 AMCodeSharePaul
04/10/2024, 9:10 AMskttl
04/10/2024, 9:51 AMMike Chambers
04/10/2024, 9:56 AMdotnet clean
to explicitly avoid the lingering dll issues that you seem to be mentioning?Mike Chambers
04/10/2024, 9:59 AMMike Chambers
04/10/2024, 10:04 AMcommits made directly to the Umbraco-git-repos
) ??skttl
04/10/2024, 10:05 AMMike Chambers
04/10/2024, 10:05 AMdotnet clean
and anyother cleaning tasks that might be required?skttl
04/10/2024, 10:06 AMCodeSharePaul
04/10/2024, 10:11 AMMike Chambers
04/10/2024, 10:14 AMSebastiaan
04/10/2024, 11:38 AMMike Chambers
04/10/2024, 11:58 AMSebastiaan
04/10/2024, 12:00 PMSebastiaan
04/10/2024, 12:00 PMSebastiaan
04/10/2024, 12:01 PMCodeSharePaul
04/10/2024, 12:03 PMCodeSharePaul
04/10/2024, 12:04 PMMike Chambers
04/10/2024, 12:04 PMMike Chambers
04/10/2024, 12:05 PMMike Chambers
04/10/2024, 12:06 PMMike Chambers
04/10/2024, 12:11 PMSebastiaan
04/10/2024, 12:11 PMMike Chambers
04/10/2024, 12:12 PMSebastiaan
04/10/2024, 12:13 PMSebastiaan
04/10/2024, 12:13 PMMike Chambers
04/10/2024, 12:17 PMMike Chambers
04/10/2024, 12:20 PMCodeSharePaul
04/10/2024, 12:23 PMSebastiaan
04/10/2024, 12:24 PMSebastiaan
04/10/2024, 12:24 PMMike Chambers
04/10/2024, 12:24 PMMike Chambers
04/10/2024, 12:26 PMSebastiaan
04/10/2024, 12:29 PMSebastiaan
04/10/2024, 12:30 PMMike Chambers
04/10/2024, 12:31 PMSebastiaan
04/10/2024, 12:32 PMSebastiaan
04/10/2024, 12:34 PMSebastiaan
04/10/2024, 12:35 PMMike Chambers
04/10/2024, 12:36 PMSebastiaan
04/10/2024, 12:37 PMMike Chambers
04/10/2024, 12:37 PMSebastiaan
04/10/2024, 12:37 PMMike Chambers
04/10/2024, 12:38 PMSebastiaan
04/10/2024, 12:39 PMSebastiaan
04/10/2024, 12:39 PMMike Chambers
04/10/2024, 12:41 PMMike Chambers
04/10/2024, 12:43 PMSebastiaan
04/10/2024, 12:45 PMMike Chambers
04/10/2024, 12:50 PMskttl
04/10/2024, 1:23 PMskttl
04/10/2024, 1:23 PMCodeSharePaul
04/10/2024, 1:30 PMCodeSharePaul
04/10/2024, 1:30 PMMike Chambers
04/10/2024, 1:31 PMCodeSharePaul
04/10/2024, 1:32 PMskttl
04/10/2024, 1:32 PMhacker tip
- in Kudu you can change the post-receive git hook (in /site/repository/.git) and make it not run the deploy command on every receive. Then you can either modify to only run on a specific branch, or make it not run at all. If not running at all, you can set a PUT request to [yoursite].scm.euwest01.umbraco.io/api/deployments (authenticate with your normal cloud credentials) to trigger the deployment 🙂skttl
04/10/2024, 1:33 PMMike Chambers
04/10/2024, 1:42 PMhttps://$[yoursite].scm.euwest01.umbraco.io/api/command
is one of those..
with a Comand-Kudu function to wrap the authheader...
# clean the uSync Folder (as no deletes only updates on deploy)
Write-Host "Remove site\wwwroot\uSync\v9"
Command-Kudu -command "powershell(rm -r -fo v9)" -dir "site\wwwroot\uSync"
# re-add the v9 folder
Write-Host "Re-add empty site\wwwroot\uSync\v9"
Command-Kudu -command "mkdir v9" -dir "site\wwwroot\uSync"
# use uSync.once to import
Write-Host "Adding site\wwwroot\uSync\v9\uSync.once"
Command-Kudu -command "echo uSync.once > uSync.once" -dir "site\wwwroot\uSync\v9\"
# clean the dtgeManifests
Write-Host "Cleaning the dtgeManifests folder site\wwwroot\App_Plugins\TSD\DtgeManifests"
Command-Kudu -command "powershell(rm -r -fo DtgeManifests)" -dir "site\wwwroot\App_Plugins\DTGEManifests\"
though sample obv not for cloud.. as that would be Umb Deploy 😉Mike Chambers
04/10/2024, 1:46 PMMatt Wise
04/10/2024, 2:12 PMskttl
04/11/2024, 6:18 AM"No route registered for '/code'"
Matt Wise
04/11/2024, 7:43 AMMatt Wise
04/11/2024, 7:43 AMCodeSharePaul
04/11/2024, 9:08 AM