Skip to content

Commit

Permalink
Fix AppVeyor describe the tag error
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Dec 6, 2024
1 parent 77b5eb4 commit 4166be0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Get it from one of the following sources:
* Microsoft Store (Windows 10 users only, no preview in open/save-dialogs available) <a href="https://www.microsoft.com/store/apps/9nv4bs3l1h4s?ocid=badge" target="_blank"><img src="https://developer.microsoft.com/store/badges/images/English_get_L.png" height="22px" alt="Store Link" /></a>
* Installer or portable archive of the stable version from [GitHub Release](https://github.com/QL-Win/QuickLook/releases)
* Using [Scoop](https://scoop.sh/): `scoop install quicklook`
* Nightly builds from [AppVeyor](https://ci.appveyor.com/project/xupefei/quicklook/build/artifacts)
* Nightly builds from [AppVeyor](https://ci.appveyor.com/project/xupefei/quicklook/build/artifacts) and [GitHub Action](https://github.com/QL-Win/QuickLook/releases/)

[What are the differences between `.msi`, `.zip`, Nightly and Store versions?](https://github.com/QL-Win/QuickLook/wiki/Differences-Between-Distributions)

Expand Down
2 changes: 1 addition & 1 deletion Scripts/pack-appx-dev.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = git describe --always --tags "--abbrev=0"
$version = git describe --always --tags "--abbrev=0" --exclude latest

if($version.Split('.').Length.Equals(3))
{
Expand Down
2 changes: 1 addition & 1 deletion Scripts/pack-appx.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = git describe --always --tags "--abbrev=0"
$version = git describe --always --tags "--abbrev=0" --exclude latest

if($version.Split('.').Length.Equals(3))
{
Expand Down
2 changes: 1 addition & 1 deletion Scripts/pack-zip.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = git describe --always --tags
$version = git describe --always --tags --exclude latest

Start-Sleep -s 1

Expand Down
2 changes: 1 addition & 1 deletion Scripts/rename-msi.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = git describe --always --tags
$version = git describe --always --tags --exclude latest

Remove-Item ..\Build\QuickLook-$version.msi -ErrorAction SilentlyContinue
Rename-Item ..\Build\QuickLook.msi QuickLook-$version.msi

0 comments on commit 4166be0

Please sign in to comment.