forked from electron/rcedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
43 lines (35 loc) · 893 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
40
41
42
43
image:
- Visual Studio 2017
configuration: Default
platform:
- x64
- Win32
before_build:
- cmd: |
git clone --depth 1 https://chromium.googlesource.com/external/gyp
gyp\gyp rcedit.gyp --depth .
build:
project: rcedit.sln
parallel: true
verbosity: minimal
after_build:
- cmd: if %PLATFORM%==Win32 (move Default\rcedit.exe Default\rcedit-x86.exe)
- cmd: if %PLATFORM%==x64 (move Default\rcedit.exe Default\rcedit-x64.exe)
branches:
only:
- master
artifacts:
- path: Default\*.exe
deploy:
- provider: GitHub
release: Rcedit $(APPVEYOR_REPO_TAG_NAME)
tag: $(APPVEYOR_REPO_TAG_NAME)
description: '(placeholder)'
auth_token:
secure: lVaYho+MDDKAQH4aImQub/L5ORlENgZ4utufxWAetovWnIsWiwFCkgFRIcIRMWz5
artifact: /.*\.exe/
draft: true
force_update: true
prerelease: false
on:
appveyor_repo_tag: true