From 3042202c140029dee8965b7a92fd5c5f163a3218 Mon Sep 17 00:00:00 2001 From: nyanhp Date: Sat, 4 Nov 2017 18:33:03 +0100 Subject: [PATCH] no artifacts are pushed --- appveyor.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index f7796d9b7..40dceea17 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -21,13 +21,21 @@ test_script: build: project: AutomatedLab.sln +before_deploy: + - ps: | + # Find MSIs + $msifiles = Get-ChildItem -Recurse -Filter *.msi + foreach($f in $msifiles) + { + Write-Host $f.FullName + } deploy: release: AutomatedLab-v$(appveyor_build_version) description: 'Release description' provider: GitHub auth_token: secure: YMKyXVrtkuyciwUqQh+UZnCYrL7HgBdIVbTzuLSsVzHQCTF/e5ZLs6lUBPPj53fC # your encrypted token from GitHub - artifact: /.*\.msi/ # upload all NuGet packages to release assets + artifact: .*\.msi # upload all NuGet packages to release assets draft: false prerelease: false on: