Skip to content

Commit 53f6d28

Browse files
authored
appveyor.yml
1 parent 2688e40 commit 53f6d28

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

appveyor.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: '{build}'
2+
pull_requests:
3+
do_not_increment_build_number: true
4+
skip_tags: true
5+
image: Visual Studio 2022
6+
configuration: Release
7+
platform: x64
8+
nuget:
9+
project_feed: true
10+
before_build:
11+
- ps: Update-AppveyorBuild -Version "$(Get-Date -format yyyy.M.dd).$env:appveyor_build_number"
12+
build:
13+
project: C:\projects\blockthespot\src\BlockTheSpot.vcxproj
14+
verbosity: minimal
15+
after_build:
16+
- pwsh: Get-ChildItem -Path C:\projects\blockthespot\src\x64\Release\*.dll, C:\projects\blockthespot\*.ini | Compress-Archive -DestinationPath C:\projects\blockthespot\chrome_elf.zip
17+
test: off
18+
artifacts:
19+
- path: chrome_elf.zip
20+
deploy:
21+
- provider: GitHub
22+
description: appveyor automatic release
23+
auth_token:
24+
secure: fAOGXS/tEQqVw+u6JcQ3E/YzSrECseAsgm8E0NEqAozsrfxjSJ/u+G/0sVOuDeia
25+
artifact: chrome_elf.zip
26+
draft: false
27+
force_update: false

0 commit comments

Comments
 (0)