-
Notifications
You must be signed in to change notification settings - Fork 6
/
appveyor.yml
39 lines (36 loc) · 964 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
version: 'MedLaunch-{branch}.{build}'
skip_tags: true
configuration: Release
shallow_clone: false
environment:
FTP_USER:
secure: uuO55CqCVyoMZ2NMlf30Qg==
FTP_PASS:
secure: q4KkytZUmTNrJN+dGMwnqA==
before_build:
- cmd: >-
powershell.exe ".\BuildTools\AppveyorVersioning.ps1"
nuget restore MedLaunch.sln
build:
project: MedLaunch/MedLaunch.csproj
verbosity: quiet
before_package:
- cmd: >-
powershell.exe ".\BuildTools\AppveyorPackaging.ps1"
test: off
artifacts:
- path: MedLaunch\bin\Release\
name: '$(ML_ARTIFACT_NAME)'
before_deploy:
- cmd: powershell.exe ".\BuildTools\AppveyorDeploy.ps1"
deploy:
- provider: GitHub
tag: $(MEDLAUNCH_VERSION_DOT)
release: MedLaunch v$(MEDLAUNCH_VERSION_DOT)
description: $(MEDLAUNCH_RELEASE_DESCRIPTION)
auth_token:
secure: lCQYDdMEEZZKFO0qJkHddSQVHGqB8K1czFJvbBdhfV8X7F17ImQKHvKn7T4S4HM5
artifact: '$(ML_ARTIFACT_NAME_NEW)'
draft: true
prerelease: false
force_update: true