An Azure service that provides an event-driven serverless compute platform.
I figured out that I was on the right track. The problem was that the stages did not share visibility on the archive. So I got to get forward by publishing the archive so that the build stage could download it. I also noticed that I can skip the archiving and just publish the dist folder.
## In the build stage:
- publish: './dist'
artifact: distFolder
## In the deploy stage:
- download: current
artifact: distFolder
- task: AzureFunctionApp@1
...
One further question though. Is there a way to do the pipeline deployment without package file?