Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix DotNetFinalVersionKind variable in yml #170

Merged
merged 11 commits into from
Nov 14, 2024
6 changes: 5 additions & 1 deletion eng/pipelines/maintenance-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@ variables:
value: ''
- name: _BuildJobDisplayName
value: 'Build and Test'
- name: _DotNetFinalVersionKind
value: ''
- ${{ else }}:
- name: _AdditionalBuildArgs
value: '/p:Test=false'
- name: _BuildJobDisplayName
value: 'Build, Sign and Publish'
- name: _DotNetFinalVersionKind
carlossanlop marked this conversation as resolved.
Show resolved Hide resolved
value: /p:DotNetFinalVersionKind=${{ variables.DotNetFinalVersionKind }}
carlossanlop marked this conversation as resolved.
Show resolved Hide resolved

resources:
repositories:
Expand Down Expand Up @@ -91,7 +95,7 @@ extends:
-configuration Release
-prepareMachine
/p:Test=false
/p:DotNetFinalVersionKind=$(DotNetFinalVersionKind)
$(_DotNetFinalVersionKind)
$(_AdditionalBuildArgs)
$(_InternalBuildArgs)
displayName: $(_BuildJobDisplayName)
Expand Down