Skip to content

Commit

Permalink
correct appveyor.yml to correctly deploy vs2017 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
chcg committed Sep 30, 2018
1 parent 1085d1c commit 43cf484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ after_build:
- cd "%APPVEYOR_BUILD_FOLDER%"
- ps: >-
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release" -and $env:PLATFORMTOOLSET -eq "v141_xp") {
if ($env:PLATFORM -eq "x64" -and $env:CONFIGURATION -eq "Release") {
if ($env:PLATFORM_INPUT -eq "x64" -and $env:CONFIGURATION -eq "Release") {
$PluginManagerZipFileName = "PluginManager_$($env:APPVEYOR_REPO_TAG_NAME)_x64.zip"
7z a $PluginManagerZipFileName .\NotepadTest\x64\*
}
if ($env:PLATFORM -eq "Win32" -and $env:CONFIGURATION -eq "Release") {
if ($env:PLATFORM_INPUT -eq "Win32" -and $env:CONFIGURATION -eq "Release") {
$PluginManagerZipFileName = "PluginManager_$($env:APPVEYOR_REPO_TAG_NAME)_UNI.zip"
7z a $PluginManagerZipFileName .\NotepadTest\unicode\*
}
Expand Down

0 comments on commit 43cf484

Please sign in to comment.