-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappveyor.yml
More file actions
43 lines (42 loc) · 1.12 KB
/
Copy pathappveyor.yml
File metadata and controls
43 lines (42 loc) · 1.12 KB
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
- branches:
only:
- master
build_script:
- build.cmd install
environment:
DNX_FEED: https://www.nuget.org/api/v2
BUILDCMD_RELEASE: beta7
NUGET_PUBLISH_FEED: https://nuget.org/
access_token1:
secure: 2yEFAtz1ISCey+VU+BGk/bmp4vV97rKpYrte9g5TqDDkXyFRz/flkD+Jzj+QWVjP
deploy: off
test: off
- branches:
only:
- dev
init:
- ps: Get-ChildItem "env:"
on_finish:
version: 1.0.{build}
environment:
BUILDCMD_RELEASE: beta7
DNX_FEED: https://www.nuget.org/api/v2
access_token1:
secure: 2yEFAtz1ISCey+VU+BGk/bmp4vV97rKpYrte9g5TqDDkXyFRz/flkD+Jzj+QWVjP
build_script:
- echo start build
- build.cmd verify
- echo end build
deploy: off
test: off
on_success:
- echo build success goto deploy
- git config --global credential.helper store
- git config --global user.email thom@kiesewetter.nl
- git config --global user.name appveyor
- git config --global push.default simple
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:access_token):x-oauth-basic@github.com`n"
- git checkout -- *
- git checkout master
- git merge dev
- git push