How to deploy files in .streamlit including secrets.toml to azure webapp instance?

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)

3 Likes