This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
appveyor.yml
44 lines (43 loc) · 1.69 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
version: '0.15.{build}'
image: Visual Studio 2019
configuration: Release
notifications:
- provider: Slack
auth_token:
secure: Q+xg4/yU5OR9BVF14cw4yZ+3qlhMeYDsAhUQyOIszmF1mHvq44tIvQpWByBJCd/cgUIZk3SwBpk4hh1MrkQIk6rnaOZ2LNBTev4zrq36oXk=
channel: '#builds'
environment:
op_build_user: "Geo Perez"
op_build_user_email: "[email protected]"
access_token:
secure: HzWdswNyfQbQ0vLk9IQyO+Ei9mxoPYp9rvv6HPhtC9J/Fm7EHRzyV953pbPRXI9I
before_build:
- ps: |
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
{
git checkout $env:APPVEYOR_REPO_BRANCH -q
cinst docfx -y
}
test_script:
- dotnet test test/Unosquare.Swan.AspNetCore.Test/Swan.AspNetCore.Test.csproj -c %CONFIGURATION%
after_build:
- ps: |
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
{
docfx docfx.json --logLevel Error
git config --global credential.helper store
Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:access_token):[email protected]`n"
git config --global core.autocrlf false
git config --global user.email $env:op_build_user_email
git config --global user.name $env:op_build_user
git clone https://github.com/unosquare/swan-aspnetcore.git -b gh-pages origin_site -q
git clone -b documentation https://github.com/unosquare/best-practices.git -q
docfx docfx.json --logLevel Error
Copy-Item origin_site/.git _site -recurse
CD _site
Copy-Item README.html index.html -force
git add -A 2>&1
git commit -m "Documentation update" -q
git push origin gh-pages -q
CD ..
}