Skip to content

Commit

Permalink
Merge pull request #1009 from bergmeister/PSSA_Artifact
Browse files Browse the repository at this point in the history
Upload only out folder as artifact, which is the actual PSSA artifact
  • Loading branch information
JamesWTruher authored Jul 19, 2018
2 parents b79e2f5 + 218e7b1 commit dc0b4a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/appveyor.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dc0b4a3

Please sign in to comment.