forked from MirrorNetworking/Mirror
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
49 lines (37 loc) · 1.48 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
version: '{branch}-{build}'
#init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
install:
- choco install unitypackager
- choco install docfx
- choco install lftp
- npm install -g semantic-release@15 @semantic-release/exec
#build:
# project: Mirror/Networking.sln
# verbosity: minimal
# Do not build on tags (GitHub only)
skip_tags: true
before_build:
- cmd: powershell .\setversion.ps1
build_script:
- docfx metadata doc\docfx.json
- docfx build doc\docfx.json
after_build:
- RMDIR /Q /S Assets\Mirror\Tests
- del /F /Q Assets\Mirror\Tests.meta
- UnityPackager pack Mirror.unitypackage Assets/Mirror Assets/Mirror Assets/ScriptTemplates Assets/ScriptTemplates LICENSE Assets/Mirror/LICENSE
artifacts:
- path: Mirror.unitypackage
- path: Assets
name: Mirror
- path: Assets
name: ScriptTemplates
image: Visual Studio 2017
environment:
LFTP_PASSWORD:
secure: sH23IC4a98S5uTtgYNHNvg==
deploy_script:
- semantic-release
- IF "%APPVEYOR_REPO_BRANCH%"=="master" ( lftp -e 'set ftp:ssl-allow no ; mirror -R -c -e -p doc/_site public_html/docs; chmod -R a+X public_html/docs ; ls -l public_html/docs/ ; ls -l public_html/docs/styles/ ; bye' -u mirreofx --env-password ftp://mirror-networking.com 2>&1 )