-
Notifications
You must be signed in to change notification settings - Fork 35
/
appveyor.yml
35 lines (33 loc) · 939 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: 2.9.1.{build}
skip_tags: true
image: Visual Studio 2019
configuration: ReleasePortable
skip_commits:
files:
- README.md
branches:
only:
- master
init:
- cmd: git clone -q --branch=master https://github.com/Maxstupo/ydl-ui_i18n.git C:\projects\ydl-ui_i18n
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- cmd: nuget restore
build:
project: YDL-UI.sln
verbosity: minimal
after_build:
- cmd: >-
mkdir "YDL-UI_v%APPVEYOR_BUILD_VERSION%_Portable"
xcopy "%APPVEYOR_BUILD_FOLDER%\YDL-UI\build\ReleasePortable" "YDL-UI_v%APPVEYOR_BUILD_VERSION%_Portable" /E /C
7z a "YDL-UI_v%APPVEYOR_BUILD_VERSION%_Portable.zip" "YDL-UI_v%APPVEYOR_BUILD_VERSION%_Portable"
test: off
artifacts:
- path: YDL-UI_v$(APPVEYOR_BUILD_VERSION)_Portable.zip
name: YDL-UI_Portable
deploy: off