-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
appveyor.yml
33 lines (27 loc) · 1014 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
image: Visual Studio 2022
skip_tags: true
platform:
- x86
- x64
configuration: Debug
before_build:
- nuget restore
after_build: "7z a Build_%PLATFORM%.zip %APPVEYOR_BUILD_FOLDER%\\Memory\\bin\\%PLATFORM%\\Debug\\*.nupkg %APPVEYOR_BUILD_FOLDER%\\Memory\\bin\\%PLATFORM%\\Debug\\netstandard2.0\\*.dll %APPVEYOR_BUILD_FOLDER%\\Memory\\bin\\%PLATFORM%\\Debug\\netstandard2.0\\*.xml %APPVEYOR_BUILD_FOLDER%\\Memory\\bin\\%PLATFORM%\\Debug\\netstandard2.0\\*.json %APPVEYOR_BUILD_FOLDER%\\Memory\\bin\\%PLATFORM%\\Debug\\netstandard2.0\\*.pdb"
build:
project: Memory.sln
artifacts:
path: Build_%PLATFORM%.zip
name: Latest
branches:
only:
- master
deploy:
- provider: GitHub
tag: $(APPVEYOR_BUILD_ID)
release: Build $(APPVEYOR_REPO_COMMIT_TIMESTAMP)
description: Latest Compile Date %APPVEYOR_REPO_COMMIT_TIMESTAMP%
auth_token:
secure: AaByiUaGTkxqZlEEhK8suZObYgDXw4YY1OIhE3w/QEQOOweImO1zh+J23Rm634Az
artifact: Build_%PLATFORM%.zip
force_update: true
draft: false