I'm having issues with deploying my github code to azure storage via azure pipeline. It deploys via AZCopy, but it's going into a subdirectory, which I believe is the reason I'm getting a 404 since the index.html file isn't in the root directory. How can I get my pipeline to deploy storage blob for the root directory?
steps:
- task: AzureFileCopy@2
displayName: 'AzureBlob File Copy'
inputs:
SourcePath: dist/
azureSubscription: '<subscription was here>'
Destination: AzureBlob
storage: ivflowstorageaccount
ContainerName: '$web'
The folder it copies to $web has my dist files in it so the previous steps seem fine, but I just don't know why it's not copying to root directory. I appreciate any help!