Skip to content

Commit 12bcb6b

Browse files
committed
appveyor: updating naming of artifacts
1 parent b63521b commit 12bcb6b

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

Scripts/flowlauncher.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package>
33
<metadata>
4-
<id>FlowLauncher</id>
4+
<id>Flow-Launcher</id>
55
<title>Flow Launcher</title>
66
<version>$version$</version>
77
<authors>happlebao, Jeremy Wu</authors>

Scripts/post_build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function Zip-Release ($path, $version, $output) {
6161
Write-Host "Begin zip release"
6262

6363
$content = "$path\Output\Release\*"
64-
$zipFile = "$output\Flow.Launcher-$version.zip"
64+
$zipFile = "$output\Flow-Launcher-v$version.zip"
6565

6666
Compress-Archive -Force -Path $content -DestinationPath $zipFile
6767

@@ -80,7 +80,7 @@ function Pack-Squirrel-Installer ($path, $version, $output) {
8080
# TODO: can we use dotnet pack here?
8181
nuget pack $spec -Version $version -BasePath $input -OutputDirectory $output -Properties Configuration=Release
8282

83-
$nupkg = "$output\FlowLauncher.$version.nupkg"
83+
$nupkg = "$output\Flow-Launcher.$version.nupkg"
8484
Write-Host "nupkg path: $nupkg"
8585
$icon = "$path\Flow.Launcher\Resources\app.ico"
8686
Write-Host "icon: $icon"
@@ -94,7 +94,7 @@ function Pack-Squirrel-Installer ($path, $version, $output) {
9494
Move-Item $temp\* $output -Force
9595
Remove-Item $temp
9696

97-
$file = "$output\Flow Launcher-$version.exe"
97+
$file = "$output\Flow-Launcher-v$version.exe"
9898
Write-Host "Filename: $file"
9999

100100
Move-Item "$output\Setup.exe" $file -Force

appveyor.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@ build:
3030
verbosity: minimal
3131

3232
artifacts:
33-
- path: 'Output\Packages\*'
33+
- path: 'Output\Packages\*.exe'
34+
name: Setup File
35+
- path: 'Output\Packages\*.nupkg'
36+
name: Squirrel nupkg
37+
- path: 'Output\Packages\RELEASES'
38+
name: Squirrel RELEASES
39+
- path: 'Output\Packages\Flow-Launcher-*.zip'
40+
name: Zip
3441
- path: 'Output\Release\Flow.Launcher.Plugin.*.nupkg'
3542
name: Plugin nupkg
3643
- path: 'Output\Release\Flow.Launcher.Plugin.*.snupkg'

0 commit comments

Comments
 (0)