-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
39 lines (39 loc) · 979 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: 1.{build}
skip_tags: true
image: Visual Studio 2022
configuration: Release
platform:
- Win32
- Win64
install:
- cmd: premake5.bat
build:
project: build/ShadowResFix.sln
verbosity: minimal
for:
-
matrix:
only:
- platform: Win32
after_build:
- cmd: 7z a ShadowResFix.zip %APPVEYOR_BUILD_FOLDER%\data\ShadowResFix.asi %APPVEYOR_BUILD_FOLDER%\data\ShadowResFix.ini
artifacts:
- path: ShadowResFix.zip
name: ShadowResFix
-
matrix:
only:
- platform: Win64
after_build:
- cmd: 7z a ShadowResFix_x64.zip %APPVEYOR_BUILD_FOLDER%\data\x64\ShadowResFix.asi %APPVEYOR_BUILD_FOLDER%\data\ShadowResFix.ini
artifacts:
- path: ShadowResFix_x64.zip
name: ShadowResFix_x64
deploy:
- provider: GitHub
release: ShadowResFix v$(appveyor_build_version)
# auth_token:
# secure: ugbti+bXX/7zqu39OyiPxgRPd2pQn2FEV/12ABees2fHfpZob0tWXzqD/zSYmibJ
artifact: ShadowResFix.zip,ShadowResFix_x64.zip
matrix:
fast_finish: true