From 6a369702f88cd8780c8e2ca1fe07b53381d33116 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Philipp=20H=C3=B6rist?= <forenjunkie@chello.at>
Date: Fri, 9 Dec 2016 23:53:28 +0100
Subject: [PATCH] Add Deployment Setting to appveyor.yml

---
 appveyor.yml | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml
index fc9ce0ce6d..b2934019e0 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -41,9 +41,20 @@ install:
   - rename exe.win32-3.4 build
 
   - ps: '& "C:\Program Files (x86)\NSIS\makensis.exe" gajim.nsi'
-  
+  - ps: Push-AppveyorArtifact Gajim.exe -FileName "Gajim-16.10.2-$($env:APPVEYOR_REPO_COMMIT).exe"
 
 build: off
 
-on_finish:
-  - ps: Push-AppveyorArtifact Gajim.exe -FileName "Gajim-16.10.1-$($env:APPVEYOR_REPO_COMMIT).exe"
\ No newline at end of file
+deploy:
+    # FTP deployment provider settings
+  - provider: FTP
+    protocol: ftp
+    host: panoramix.gajim.org
+    username:
+      secure: SNcOJDhUtBjfddbKXudE2w==
+    password:
+      secure: tQkYbcUb6nChCp0cdqo4CA==
+    folder: win_snap
+    active_mode: false
+    beta: true      # enable alternative FTP library for 'ftp' and 'ftps' modes
+    debug: true
-- 
GitLab