Unable to deploy using github actions
Hello,
I am deploying a function app using github actions which has been working fine until now. I made a change to my function app logic and am using the same yaml file as the last successful deploy, however, now it gets stuck when deploying. Here is the message it receives in the step it gets stuck at:
Run Azure/functions-action@v1
Successfully parsed SCM credential from publish-profile format.
Using SCM credential for authentication, GitHub Action will not perform resource validation.
Successfully acquired app settings from function app (with SCM credential)!
Will archive . into /home/runner/work/_temp/temp_web_package_20908426067887786.zip as function app content
Will use Kudu https://<scmsite>/api/zipdeploy to deploy since publish-profile is detected.
Setting SCM_DO_BUILD_DURING_DEPLOYMENT in Kudu container to true
Update using context.kuduService.updateAppSettingViaKudu
Response with status code 204
App setting SCM_DO_BUILD_DURING_DEPLOYMENT propagated to Kudu container
Setting ENABLE_ORYX_BUILD in Kudu container to true
Update using context.kuduService.updateAppSettingViaKudu
Response with status code 204
App setting ENABLE_ORYX_BUILD propagated to Kudu container
Package deployment using ZIP Deploy initiated.
Nothing with my yaml file has changed in the last few months, it just now stopped deploying smoothly. I have a different function app that uses github actions and it still is able to deploy so it seems isolated to this function app. Any guidance would be appreciated. Thank you.