From 0cfcaca6b2d30ed7e16ff8b50a8a4257233a4dc3 Mon Sep 17 00:00:00 2001 From: Alexey Golub Date: Fri, 27 Oct 2017 22:46:10 +0300 Subject: [PATCH] Add appveyor.yml --- appveyor.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..6ec37b2 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,33 @@ +# This config ensures the following: +# - When Alexey Golub commits "Update version", deploys to GitHub releases from master + +version: '{build}' + +image: Visual Studio 2017 +configuration: Release + +before_build: +- ps: nuget restore + +build: + verbosity: minimal + +after_build: +- ps: Deploy\Prepare.ps1 + +artifacts: +- path: Deploy\Output\DiscordChatExporter.zip + name: DiscordChatExporter.zip + +deploy: +- provider: GitHub + tag: APPVEYOR + release: APPVEYOR + auth_token: + secure: sjQHWRw29AMiVMn3MtidtWnAzAf1mJ+mkJ/7h1B9TIAHhkFrqwMK7LtXV+uNJ9AO + artifact: DiscordChatExporter.zip + draft: true + on: + branch: master + APPVEYOR_REPO_COMMIT_MESSAGE: Update version + APPVEYOR_REPO_COMMIT_AUTHOR: Alexey Golub \ No newline at end of file