Skip to content

Commit

Permalink
🚀 Use more readable date format
Browse files Browse the repository at this point in the history
  • Loading branch information
vexx32 committed Mar 12, 2020
1 parent 9f99740 commit da49dce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ pr:
variables:
NupkgArtifactName: 'PSKoans.nupkg'
${{ if eq(variables['System.PullRequest.PullRequestNumber'], '') }}:
BuildName: '$(Date:yyyyMMdd) (#$(BuildID)) $(TeamProject) ($(SourceBranchName))'
BuildName: '$(Date:yyyy-MM-dd) (#$(BuildID)) $(TeamProject) ($(SourceBranchName))'
${{ if ne(variables['System.PullRequest.PullRequestNumber'], '') }}:
BuildName: '$(Date:yyyyMMdd) (#$(BuildID)) $(TeamProject) (PR #$(System.PullRequest.PullRequestNumber))'
BuildName: '$(Date:yyyy-MM-dd) (#$(BuildID)) $(TeamProject) (PR #$(System.PullRequest.PullRequestNumber))'

name: '${{ variables.BuildName }}'

Expand Down

0 comments on commit da49dce

Please sign in to comment.