-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathappveyor.yml
41 lines (30 loc) · 886 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
36
37
38
39
40
41
skip_tags: true
version: 2.0.{build}
image: Visual Studio 2022
environment:
github_access_token:
secure: EMJUnvkJwGXaFnohUmpxqyNd0R4hpMCeUtl5aVtHqFerhd0UdYc+lTJV3H3sIhg6
github_email:
secure: B5VQnP9LQP9stxxvu2G/3MCKhVySoSVf/mvyqHY5K8M=
init:
- git config --global core.autocrlf input
build_script:
- Nake.bat restore --packagesOnly
- Nake.bat AppVeyorJobId=%APPVEYOR_JOB_ID% pack
test: off
artifacts:
- path: Artifacts\Release\*.nupkg
for:
-
branches:
only:
- master
install:
- choco install docfx
deploy_script:
- Nake.bat docs.build
- git config --global credential.helper store
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:github_access_token):[email protected]`n"
- git config --global user.email %github_email%
- git config --global user.name "yevhen"
- Nake.bat docs.release