Skip to content

Commit

Permalink
folders again
Browse files Browse the repository at this point in the history
  • Loading branch information
young-developer committed Nov 28, 2022
1 parent 7024b6d commit 1b1ee9d
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 @@ -33,7 +33,7 @@ after_build:
- ps: >-
if ($env:PLATFORM -eq "x64" -and $env:CONFIGURATION -eq "Release") {
Push-AppveyorArtifact "bin\$env:CONFIGURATION\NavigateTo.dll" -FileName NavigateTo.dll
Push-AppveyorArtifact "bin\$env:CONFIGURATION-$env:PLATFORM\NavigateTo.dll" -FileName NavigateTo.dll
}
if ($env:PLATFORM -eq "x86" -and $env:CONFIGURATION -eq "Release") {
Expand All @@ -43,7 +43,7 @@ after_build:
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release") {
if($env:PLATFORM -eq "x64"){
$ZipFileName = "NavigateTo_$($env:APPVEYOR_REPO_TAG_NAME)_$($env:PLATFORMTOOLSET)_x64.zip"
7z a $ZipFileName .\bin\$env:CONFIGURATION\*
7z a $ZipFileName .\bin\$env:CONFIGURATION-$env:PLATFORM\*
Push-AppveyorArtifact $ZipFileName -DeploymentName releases
} else {
$ZipFileName = "NavigateTo_$($env:APPVEYOR_REPO_TAG_NAME)_$($env:PLATFORMTOOLSET)_x86.zip"
Expand Down

0 comments on commit 1b1ee9d

Please sign in to comment.