Skip to content

Commit

Permalink
Rename pipeline parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesDawson committed Dec 14, 2022
1 parent 9180d48 commit fd589e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ trigger:
- '*'

parameters:
- name: Endjin.ForcePublish
- name: ForcePublish
type: boolean
default: false
displayName: When checked, a new release will be created and NuGet packages published; otherwise only 'master' branch changes will be published
- name: Endjin.InternalPublish
- name: InternalPublish
type: boolean
default: false
displayName: When checked, NuGet packages will be published to an internal feed; this is independent of whether a public release is performed
Expand All @@ -26,8 +26,8 @@ resources:
endpoint: marain-github

variables:
'Endjin.ForcePublish': ${{ parameters.Endjin.ForcePublish }}
'Endjin.InternalPublish': ${{ parameters.Endjin.InternalPublish }}
Endjin.ForcePublish: ${{ parameters.ForcePublish }}
Endjin.InternalPublish: ${{ parameters.InternalPublish }}

jobs:
- template: templates/build.and.release.scripted.yml@recommended_practices
Expand Down

0 comments on commit fd589e3

Please sign in to comment.