From b6c812ad9b279f254c0c97933cfc3893adc92a68 Mon Sep 17 00:00:00 2001 From: Philip Stockerer Date: Tue, 19 Apr 2022 13:06:09 +0000 Subject: [PATCH] testing out ftp upload --- azure-pipelines.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1553e2b..93e804d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,3 +19,17 @@ steps: npm install npm run build displayName: 'npm install and build' +- task: FtpUpload@2 + inputs: + credentialsOption: 'inputs' + serverUrl: 'e81782-ftp.services.easyname.eu' + username: '127175ftp1' + password: '.22ma1rzqi14' + rootDirectory: '$(Build.SourcesDirectory)' + filePatterns: '**' + remoteDirectory: '/upload/$(Build.BuildId)/' + clean: false + cleanContents: false + preservePaths: false + trustSSL: false +