I need help in publishing Azure Function from local system. The function uses App Service Plan and has python code.
I have worked with azure functions in python which used consumption plan. I was able to publish the code from my local machine using
func azure functionapp publish app_name --build remote
But when I created a new function app with App Service Plan this command does not publish the app.
This is the output I get after running publish command
Getting site publishing info...
Updating Application Settings for Remote build...
Creating archive for current directory...
Perform remote build for functions project (--build remote).
Deleting the old .python_packages directory
Uploading 288.84 KB [#############################################################################]
Remote build in progress, please wait........done
Remote build succeeded!
This gets build but not published.
Thanks