Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @Tyler Suard
It seems you're experiencing issues deploying your code to your Azure Web App with the Azure CLI. Even though the CLI reports a successful deployment, the changes aren't appearing in your app.
Enable logging by adding --logs to your command to spot any errors.
Ensure the resource group and app name are correct. You can also use az webapp up to streamline deployment from your local workspace.
az webapp up --resource-group <my resource group> --name <my function name> --src-path dist.zip --sku F1
Confirm you're using the latest version with az --version, and update if needed.
Add --debug or --verbose for more detailed logs during deployment.
Make sure your app isn't linked to a different source or storage than your current zip file.
Verify that your app is set up for the deployment method you're using.
https://learn.microsoft.com/en-us/cli/azure/use-azure-cli-successfully-tips?view=azure-cli-latest&tabs=bash%2Ccmd2#debugging-azure-cli-commands
https://learn.microsoft.com/en-us/azure/app-service/quickstart-dotnetcore?tabs=net80&pivots=development-environment-cli
let me know if you have any further assistances needed.