I've got an app service on Azure. Now, what I want is the Beta version of the app. So created a new app service inside a new Resource Group. It was easy to do the set up and make it running.
But facing issue with deployment. I have created a Service Connection which is linked to my Azure Beta Resource. But I don't see how my new pipelines links to this service connection.
Pipeline is (YAML export)
pool:
name: Azure Pipelines
demands: npm
steps:
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- task: Npm@1
displayName: 'npm build'
inputs:
command: custom
verbose: false
customCommand: 'run build --scripts-prepend-node-path=auto '
- task: ArchiveFiles@2
displayName: 'Archive files'
inputs:
rootFolderOrFile: dist
includeRootFolder: false
- task: PublishBuildArtifacts@1
displayName: 'Publish artifacts: drop'
The pipeline runs without errors and neither the Beta site nor Prod site gets any of the code changes. Can you guide?
The pipeline runs without errors and neither the Beta site nor Prod site gets any of the code changes. Can you guide?