Skip to content

Commit

Permalink
Refactor to CLI arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
commonsensesoftware committed Aug 23, 2022
1 parent ebc1e21 commit f0f360d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/steps-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ steps:
inputs:
command: pack
projects: ${{ parameters.solution }}
arguments: --configuration ${{ parameters.configuration }}
buildProperties: VersionSuffix=${{ parameters.versionSuffix }}
${{ if eq(parameters.versionSuffix, '') }}:
arguments: --configuration ${{ parameters.configuration }}
${{ else }}:
arguments: --configuration ${{ parameters.configuration }} --version-suffix ${{ parameters.versionSuffix }}
outputDir: $(Build.ArtifactStagingDirectory)/packages
noBuild: true

Expand Down

0 comments on commit f0f360d

Please sign in to comment.