project64/appveyor.yml

20 lines
422 B
YAML
Raw Normal View History

2019-09-30 02:11:24 +00:00
image: Visual Studio 2015
build:
project: Project64.sln
parallel: true
verbosity: minimal
platform:
- Win32
- x64
configuration:
- Release
before_build:
- for /f "tokens=1 delims=" %%a in ('git describe --tags --long --dirty') do set current_tag=%%a
- appveyor UpdateBuild -Version %current_tag%
after_build:
- Source/Script/package_zip.cmd %current_tag%-%platform%.zip %platform%
artifacts:
- path: Package/*.zip