From e856ecc06c6d275d77255e0f7d845e29642da2f7 Mon Sep 17 00:00:00 2001 From: Pavel Stupnikov Date: Mon, 1 Apr 2019 21:58:09 +0300 Subject: [PATCH] azure: copy data before making zip --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a6a096c7d7..36ebd96242 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -109,8 +109,9 @@ jobs: BuildPlatform: $(BuildPlatform) - bash: | set -ex - make -f Makefile.msvc bundle_pdb bundle_zip PLATFORM=$(BundlePlatform) BUNDLE_NAME=citymania-client-$(Build.BuildNumber)-$(BundlePlatform) + mkdir -p bundle cp -r bin/data bundle/ + make -f Makefile.msvc bundle_pdb bundle_zip PLATFORM=$(BundlePlatform) BUNDLE_NAME=citymania-client-$(Build.BuildNumber)-$(BundlePlatform) displayName: 'Create bundles' - task: PublishBuildArtifacts@1 displayName: 'Publish bundles'