forked from teknogods/OpenSegaAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
34 lines (29 loc) · 936 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
version: 1.0.0.{build}
image: Visual Studio 2017
configuration: Release
# Do not build on tags (GitHub only)
skip_tags: true
platform:
- Win32
before_build:
- cmd: premake5.exe vs2017
- ps: >-
Get-Content .\Opensegaapi\src\Opensegaapi.rc | ForEach-Object { $_ -replace "1.0.0.0", $env:appveyor_build_version } | Set-Content .\Opensegaapi\src\Opensegaapi2.rc
del .\Opensegaapi\src\Opensegaapi.rc
mv .\Opensegaapi\src\Opensegaapi2.rc .\Opensegaapi\src\Opensegaapi.rc
build:
project: Opensegaapi.sln
verbosity: minimal
artifacts:
- path: build\bin\release\output\
name: Opensegaapi
deploy:
- provider: GitHub
tag: OpenSegaAPI
release: $(APPVEYOR_BUILD_VERSION)
description: $(APPVEYOR_REPO_COMMIT_MESSAGE)
auth_token:
secure: a2B+6mDTHuBa0fw8nm739eGJIZBcZp0IenhKvvXvreLR6ZUoHg9pflMP8ahNUK6o
repository: teknogods/Opensegaapi
artifact: build\bin\release\Opensegaapi.zip
force_update: true