-
Notifications
You must be signed in to change notification settings - Fork 8
/
appveyor.yml
35 lines (35 loc) · 1.09 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
version: 1.0.{build}
branches:
only:
- master
skip_tags: true
image: Visual Studio 2017
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.cs'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
skip_commits:
files:
- docs/
- '**/*.md'
- '*.txt'
- appveyor.yml
- LICENSE.txt
- '.gitignor'
build:
project: NetworkScanner.sln
verbosity: minimal
after_build:
- cmd: 7z a NetworkScanner-%CONFIGURATION%-%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\NetworkScanner\bin\%CONFIGURATION%\*.exe
artifacts:
- path: NetworkScanner-%CONFIGURATION%-%APPVEYOR_BUILD_VERSION%.zip
deploy:
- provider: GitHub
description: "`NetworkScanner-%CONFIGURATION%-%APPVEYOR_BUILD_VERSION%.zip` contains the application (NetworkScanner.exe).\nYou can start the application `NetworkScanner.exe` directly without any args.\n\n#### Last commit message\n%APPVEYOR_REPO_COMMIT_MESSAGE%"
auth_token:
secure: CS8iZldTMAHjWvK8RNerBk+qZtooKfJgA3n3dARn9dd8lLXInoiGLJWvQvEAFaHY
prerelease: true