From 6bc51da3a8ba73f1b6fcbd96658933b92d00e3c2 Mon Sep 17 00:00:00 2001 From: Ryan Newington Date: Sat, 4 Feb 2023 08:53:25 +1100 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a72469d..67ba5b4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -29,7 +29,7 @@ stages: displayName: Build credential provider dependsOn: [] jobs: - - job: "build-provider-job" + - job: "build_provider_job" steps: - task: DotNetCoreCLI@2 displayName: dotnet build @@ -153,11 +153,11 @@ stages: targetPath: '$(Build.ArtifactStagingDirectory)/ps' publishLocation: 'pipeline' -- stage: build-psmodule +- stage: build_psmodule displayName: Build PowerShell module dependsOn: [] jobs: - - job: "build-ps-job" + - job: "build_ps_job" steps: - task: DotNetCoreCLI@2 displayName: dotnet build @@ -217,9 +217,9 @@ stages: targetPath: '$(Build.ArtifactStagingDirectory)\ps' publishLocation: 'pipeline' -- stage: publish-nuget +- stage: publish_nuget displayName: Publish packages to production feed - dependsOn: "build-provider" + dependsOn: "build_provider" jobs: - deployment: 'PublishPackages' environment: 'Production' @@ -242,9 +242,9 @@ stages: nuGetFeedType: 'external' publishFeedCredentials: 'WindowsCredentialProviderNuget' -- stage: publish-psgallery +- stage: publish_psgallery displayName: Publish module to PSGallery - dependsOn: "build-psmodule" + dependsOn: "build_psmodule" jobs: - deployment: 'PublishPackages' environment: 'Production'