serverless-reference-implementation
serverless-reference-implementation copied to clipboard
Issues with publishing DroneTelemetryFunctionApp
I first tried:
func azure functionapp publish ${DRONE_TELEMETRY_FUNCTION_APP_NAME}
Can't determine project language from files. Please use one of [--csharp, --javascript, --typescript, --java, --python, --powershell, --custom]
Your Azure Function App has 'FUNCTIONS_WORKER_RUNTIME' set to 'dotnetIsolated' while your local project is set to 'None'.
You can pass --force to update your Azure app with 'None' as a 'FUNCTIONS_WORKER_RUNTIME'
This worked:
func azure functionapp publish ${DRONE_TELEMETRY_FUNCTION_APP_NAME} --csharp --force
Apologies for any inconvenience. Kindly try the following command:
func azure functionapp publish ${DRONE_TELEMETRY_FUNCTION_APP_NAME} --dotnet-isolated
I will be resuming work on this repository shortly.
@NathanDotTo - Thanks for your feedback. The latest update should address your issue.