We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebc1e21 commit f0f360dCopy full SHA for f0f360d
build/steps-release.yml
@@ -15,8 +15,10 @@ steps:
15
inputs:
16
command: pack
17
projects: ${{ parameters.solution }}
18
- arguments: --configuration ${{ parameters.configuration }}
19
- buildProperties: VersionSuffix=${{ parameters.versionSuffix }}
+ ${{ if eq(parameters.versionSuffix, '') }}:
+ arguments: --configuration ${{ parameters.configuration }}
20
+ ${{ else }}:
21
+ arguments: --configuration ${{ parameters.configuration }} --version-suffix ${{ parameters.versionSuffix }}
22
outputDir: $(Build.ArtifactStagingDirectory)/packages
23
noBuild: true
24
0 commit comments