Azure Functions, where only the core function files are uploaded, leaving out critical project files

Sai Krishna Agaram 0 Reputation points
2023-09-29T17:37:51.7966667+00:00

I'm encountering an issue with my Azure Functions deployment. Only core function files are being uploaded, omitting essential project files. I need to resolve this without utilizing pipelines. Your expertise is greatly appreciated

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,678 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Dan Rios 1,815 Reputation points MVP
    2023-09-30T08:25:00.8866667+00:00

    In my experience running func azure functionapp publish will create the zip deploy on the fly during runtime and build the package.

    You won’t need to zip anything prior to running this, just leave the directory as it is and run from within the root directory. This will send all files and folders to the function - is this the case, are you able to run and confirm if this is different to what you’ve been doing?

    Additionally, how are you determining that the Function doesn’t include your folders? If you go the Storage Account the function is linked to, under the file shares you should see your Function and the deployment files including your folders after you’ve done the publish.

    Usually in the function app itself when you click on the app files you don’t typically see the folder structure (in my experience) just the root files for the function, in case the confusion here may be around this and actually your folders are there within the storage file share location for you to verify.

    If this solves your issue please feel free to mark as the accepted answer.

    0 comments No comments