From f08da32eb27a01312c9d2ed7ea33112aba371827 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Wed, 7 Feb 2018 10:08:59 -0800 Subject: [PATCH] Move AppVeyor artifact publishing to on_finish to ensure it runs on failed builds too (#1414) --- .appveyor.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 79404e6870..d98db16a9f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -10,11 +10,9 @@ branches: - /^rel\/.*/ build_script: - ps: .\run.ps1 default-build +on_finish: - ps: "7z a testlogs.zip testlogs" -artifacts: - - path: testlogs.zip - name: TestLogs - type: Zip + - ps: "Push-AppveyorArtifact testlogs.zip" install: - ps: Install-Product node 8 clone_depth: 1