I have an ASP.NET Core application on which Github with automatic deployment is installed. But since this is an open repo, I obviously do not want to download my correct configuration file.
I would like to replace some lines in appsettings.json after github auto-deployment.
"AppSettings": {
"Token": "my super duper secret token"
}
How can I change my super duper secret tokento a real token after deploying github in Azure?
source
share