Skip release stages for pull request builds

This commit is contained in:
Ryan Newington
2026-08-30 09:31:31 +10:00
parent b0d6ccc702
commit 4d20fa9d43
+3
View File
@@ -164,6 +164,9 @@ stages:
- stage: build_provider - stage: build_provider
displayName: Build credential provider displayName: Build credential provider
dependsOn: test_provider dependsOn: test_provider
# Pull request builds validate every target framework in test_provider. Release
# stages require signing secrets and can publish packages and GitHub releases.
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
jobs: jobs:
- job: "build_provider_job" - job: "build_provider_job"
steps: steps: