From f33ccb195617c43e5a655f623a45c62723716e25 Mon Sep 17 00:00:00 2001 From: Jamie Rees Date: Sun, 21 Apr 2019 20:53:04 +0100 Subject: [PATCH] fixed script --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index e36c46159..b7f55e385 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -52,8 +52,8 @@ after_build: If(($env:APPVEYOR_REPO_BRANCH -in $deployBranches -Or $env:APPVEYOR_REPO_COMMIT_MESSAGE -Match '!deploy') -And $env:APPVEYOR_REPO_COMMIT_MESSAGE -NotMatch '!build') { Write-Output "Deploying!" - Get-ChildItem .\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } - Get-ChildItem .\*.gz | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + Get-ChildItem -Recurse .\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + Get-ChildItem -Recurse .\*.gz | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } } Else {