aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 21ab34eb06d6d73ba509597bb7a1a895f0f21d7a (plain) (blame)
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
image: Visual Studio 2015
configuration: Debug
platform: Any CPU
before_build:
- nuget restore

build:
    verbosity: detailed
    project: Project_Silicon.sln
 
after_build:
- cmd: tree /F
- cmd: 7z a -tzip "Project Ports/bin/Debug/Project-Silicon.zip" "Project Ports/bin/Debug/*"

artifacts:
- path: Project Ports/bin/Debug/Project-Silicon.zip
  name: DevBuild

deploy:
    provider: GitHub
    release: Continuous build
    description: 'Project Silicon Development Builds'
    auth_token:
        secure: MeuJU9DaBpnzRdWaqvDfR4M7WhtB90FIpmYkZ5GmS8GyVSWyHT2FAMtDczW3D/JQ
    artifact: /.*\.zip/
    draft: false
    prerelease: true
    force_update: true
    tag: continuous
    on:
        appveyor_repo_tag: true