Closed tig closed 2 years ago
This issue is idle because it has been open for 14 days with no activity.
I am getting a similar problem, but a 403. I'm wondering if this is due to a private endpoint?
This issue is idle because it has been open for 14 days with no activity.
same issue here.
Eventually tracked out problem down to a mixture of the blob storage account not having table permission and not being public endpoint. If we have to swap to private endpoint, we'll have to get a private build agent.
This issue is idle because it has been open for 14 days with no activity.
Same here, my deploy workflow was working 6 days ago and now it's broken. I did not change anything on the workflow file or Azure
This is the error I'm seeing.
Hi everyone,
I am having the same issue with my function-app.
Successfully parsed SCM credential from old publish-profile format.
Using SCM credential for authentication, GitHub Action will not perform resource validation.
Error: Execution Exception (state: ValidateAzureResource) (step: Invocation)
Error: When request Azure resource at ValidateAzureResource, Get Function App Settings : Failed to acquire app settings from https://<scmsite>/api/settings with publish-profile
Error: Failed to fetch Kudu App Settings.
Site Unavailable from Mini-ARR (CODE: 503)
Error: Error: Failed to fetch Kudu App Settings.
Site Unavailable from Mini-ARR (CODE: 503)
at Kudu.<anonymous> (/home/runner/work/_actions/Azure/functions-action/v1/node_modules/azure-actions-appservice-rest/Kudu/azure-app-kudu-service.js:62:23)
at Generator.next (<anonymous>)
at fulfilled (/home/runner/work/_actions/Azure/functions-action/v1/node_modules/azure-actions-appservice-rest/Kudu/azure-app-kudu-service.js:5:58)
at processTicksAndRejections (internal/process/task_queues.js:93:5)
Error: Deployment Failed!
The function app is hosted on Windows and runs NodeJS 14. This workflow has been working without issues for the last year.
EDIT: This was due to the unavailability of my app. After making sure app was working as expected (storage link, CPU usage, Outbound TCP connexions). I can deploy as usual
This issue is idle because it has been open for 14 days with no activity.
@patelchandni Outstanding news! What's the solution if it's completed?
Type: Bug
Enter Task Name: Azure/functions-action@v1
Environment
Issue Description
My app was working for months and I recently tried to update it and got this error.
I have searched the 'net high and low and have found similar errors, but nothing that matches this. None of the suggestions in those Issues/SO posts have helped. Examples:
https://stackoverflow.com/questions/64873031/azure-functions-deploy-from-github-actions-results-in-error-failed-to-fetch-ku
https://docs.microsoft.com/en-us/answers/questions/137869/publish-profile-publishurl-needs-to-be-adjusted-af.html
Here's my Action log:
My yaml:
My PublishSettings file which is stored in:
I went to the Azure Portal/Deployment Center and did
Disconnect
and reconnected, having it re-generate the workflow file.After doing this, I found I had to change 'AZURE_FUNCTIONAPP_PACKAGE_PATH
from
.to
Api` (because that's what my client for this function expects).So now my .yml is:
The same error occurs.
I'm at my wits end. As I note this was working for months (last working commit was last September). Something changed between then on the Azure side that broke this, I believe.
Happy to be proven wrong, but I don't know how to dive deeper to figure it out.