From 218e7b1082c475fdbf9c21d2b44220a970fc1c36 Mon Sep 17 00:00:00 2001 From: Christoph Bergmeister Date: Sat, 2 Jun 2018 22:25:00 +0100 Subject: [PATCH] upload only out folder, which is the actual PSSA artifact --- tools/appveyor.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/appveyor.psm1 b/tools/appveyor.psm1 index 0625dea33..00faa68c0 100644 --- a/tools/appveyor.psm1 +++ b/tools/appveyor.psm1 @@ -91,7 +91,7 @@ function Invoke-AppveyorFinish { $stagingDirectory = (Resolve-Path ..).Path $zipFile = Join-Path $stagingDirectory "$(Split-Path $pwd -Leaf).zip" Add-Type -AssemblyName 'System.IO.Compression.FileSystem' - [System.IO.Compression.ZipFile]::CreateFromDirectory($pwd, $zipFile) + [System.IO.Compression.ZipFile]::CreateFromDirectory((Join-Path $pwd 'out'), $zipFile) @( # You can add other artifacts here (Get-ChildItem $zipFile)