-
Notifications
You must be signed in to change notification settings - Fork 6
/
appveyor.yml
42 lines (40 loc) · 1.27 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
image: Visual Studio 2022
version: 0.2.0.{build}
branches:
only:
- master
skip_tags: true
skip_commits:
message: /\[NAB\]/
configuration: Release
platform: x64
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
version_prefix: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
build_script:
- cmd: >-
dotnet publish "%APPVEYOR_BUILD_FOLDER%\GDStoSVG\GDStoSVG.csproj" --output "%APPVEYOR_BUILD_FOLDER%\GDStoSVG\PublishResult" --configuration Release --verbosity minimal
7z a GDStoSVG-autobuild-v%appveyor_build_version%.zip %APPVEYOR_BUILD_FOLDER%\GDStoSVG\PublishResult\*
artifacts:
- path: GDStoSVG-autobuild-v*.zip
deploy:
- provider: GitHub
tag: auto-v$(appveyor_build_version)
release: Automatic Build v$(appveyor_build_version)
description: This is an automatic build of the latest commits. Usage is at your own risk.
auth_token:
secure: fIgQpdctIp9szYmG0dfhfD0Cc4/eKQYO7aGXOOYULOB4Bu5SIg6GE+ZRw9kTFNRZ
artifact: GDStoSVG-autobuild-v$(appveyor_build_version).zip
prerelease: true