You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: PackageOutputPath # Path where NuGet packages will be copied to.
35
+
value: $(Build.ArtifactStagingDirectory)
36
+
37
+
workspace:
38
+
clean: all # Cleanup the workspace before starting.
39
+
40
+
steps:
41
+
- template: stage-build.yml
42
+
43
+
- stage: Release
44
+
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'), eq(variables['IsReleaseBranch'], 'true')) # Only release when the build is not for a Pull Request and branch name fits.
45
+
jobs:
46
+
- job: Publish_NuGet_External
47
+
48
+
pool:
49
+
vmImage: $(windowsHostedAgentImage)
50
+
51
+
workspace:
52
+
clean: all # Cleanup the workspace before starting.
no-bump-message: "^(ci)(\\([\\w\\s-]*\\))?:"# You can use the "ci" type to avoid bumping the version when your changes are limited to the build or .github folders.
0 commit comments