Skip to content

Commit

Permalink
exclude *-dev tags in appveyor versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
carmineos authored May 23, 2020
1 parent bbda66c commit 7e10d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
install:
- ps: $env:LAST_TAG = git describe --abbrev=0 --tags
- ps: $env:LAST_TAG = git describe --abbrev=0 --tags --exclude "*-dev"
- ps: $env:TAG_NUMBER = $env:LAST_TAG.Substring($env:LAST_TAG.IndexOf('v') + 1)
- ps: if ($env:APPVEYOR_REPO_TAG -ne $True){ $env:TAG_NUMBER = $env:TAG_NUMBER + "." + $env:APPVEYOR_BUILD_NUMBER } else { $env:TAG_NUMBER = $env:TAG_NUMBER + "." + 0 }

Expand Down

0 comments on commit 7e10d1a

Please sign in to comment.