-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
46 lines (46 loc) · 1.1 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
43
44
45
46
version: 0.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- main
skip_tags: true
image: Visual Studio 2022
configuration: Release
platform: x64
build:
project: GeForceNowWindowMover.csproj
verbosity: normal
after_build:
- cmd: 7z a GFN_WindowMover.zip %APPVEYOR_BUILD_FOLDER%\Release\*.exe %APPVEYOR_BUILD_FOLDER%\Release\*.exe.config
artifacts:
- path: GFN_WindowMover.zip
name: deploy
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "0.0.{build}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
deploy:
- provider: GitHub
tag: v$(appveyor_build_version)
release: GFNWindowMover-v$(appveyor_build_version)
description: $(APPVEYOR_REPO_COMMIT_MESSAGE)\n$(APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED)
auth_token:
secure: Jib02JvY9eExnO/sKNidWw8d5URXJ2xl7jY1iJXYqVWlAwwaBMHkNA+mHslpIjjJ
artifact: deploy
draft: false
prerelease: false
force_update: true
on:
branch: main
skip_commits:
files:
- '*.md'
- '*.png'
- LICENSE
- '.gitignore'
- 'App.config'
- 'appveyor.yml'
- 'AssemblyInfo.cs'