79485334

Date: 2025-03-05 02:52:51
Score: 0.5
Natty:
Report link

I ended up using the Azure Functions Core Tools via PowerShell.

@echo off
echo Starting Azure Function deployment...

REM Navigate to function app directory
cd C:\my\path\

REM Clean and rebuild
call npm run clean
call npm run build

REM Set variables
set functionAppName=dev-funcapp
set resourceGroup=devrg

REM Deploy
echo Deploying to %functionAppName%...
call func azure functionapp publish %functionAppName% --verbose

echo Deployment completed!
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DapperDanh