Skip to content

Commit d13c951

Browse files
authored
Merge pull request #88 from Azure/dev
Fix build script to not use tag name for creating nuget package
2 parents c4fa91f + 0d5d754 commit d13c951

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ build_script:
1515
- ps: |
1616
$buildNumber = 0
1717
if($env:APPVEYOR_REPO_TAG -eq "true") {
18-
$buildNumber = $env:APPVEYOR_REPO_TAG_NAME
19-
Write-Host “Found git tag. Setting package suffix to '$buildNumber'"
18+
$buildNumber = ""
19+
Write-Host “Found git tag. Not setting package suffix"
2020
}
2121
else {
2222
$buildNumber = "-$env:APPVEYOR_BUILD_NUMBER"

0 commit comments

Comments
 (0)