From 05a0039822ce6c7acd0e18db8a1cece5ebb76377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=A4rkl?= Date: Wed, 13 Mar 2019 17:16:29 +0100 Subject: [PATCH] Fix AppVeyor Artifact --- .appveyor.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 932367d..5e3cf2f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -3,6 +3,10 @@ image: 'Visual Studio 2017' configuration: - Release +environment: + ARTIFACT_PATH: cutter-deps-win.tar.gz + ARTIFACT_NAME: cutter-deps-win.tar.gz + build_script: - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 - C:\msys64\usr\bin\bash -lc " @@ -15,11 +19,15 @@ build_script: export LLVM_INSTALL_DIR=\"C:\Program Files\LLVM\" && make PYTHON_WINDOWS=\"C:\Python36-x64\" QT_PREFIX=\"C:\Qt\5.12.1\msvc2017_64\"" +artifacts: + - path: "%ARTIFACT_PATH%" + name: "%ARTIFACT_NAME%" + deploy: description: "cutter-deps" provider: GitHub auth_token: secure: zMlNzVP9WsKDBhzIYyjRrrGwow232C6kivY7zG7Neu9XdbXqbPKFEQbb3XYSGZRQ - artifact: cutter-deps-win.tar.gz + artifact: "%ARTIFACT_PATH%" on: APPVEYOR_REPO_TAG: true