I am pushed my code to GitHub and successfully created a Azure web app service. My entire code gets pushed to the Azure cloud except for the contents in the .streamlit folder.
Can someone suggest best way to deploy the secrets to Azure webapp?
Hi Ninad,
Were you able resolve this issue ? I am also facing the same problem.
While deployment from github, the .streamlit/secrets.toml file is getting ignored and is not sent to the Azure.
Please let me now if you were any to find a solution. It would be really helpful.
Navigate to your repo on Github.
Go to the folder .github/workflows
Open the .yml file
I found that line 35: “run: zip release.zip ./* -r” should be changed to “run: zip release.zip ./* .streamlit -r”. This includes the .streamlit folder (including the config.toml file)