-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
50 lines (47 loc) · 2.79 KB
/
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
44
45
46
47
48
49
50
version: 1.0.{build}
branches:
only:
- master
image: Visual Studio 2019
configuration: Release
platform: Any CPU
before_build:
- ps: nuget restore
build:
verbosity: minimal
deploy:
tag: unstable
release: Latest Commit
description: 'This build is updated every time a commit is pushed to master. These builds are unstable!
Please report bugs in [Issues](https://github.com/ScanMountGoat/SFGraphics/issues).\n\n
Commit: $(APPVEYOR_REPO_COMMIT)\n\n
Message: $(APPVEYOR_REPO_COMMIT_MESSAGE)\n\n
Timestamp: $(APPVEYOR_REPO_COMMIT_TIMESTAMP)'
provider: GitHub
auth_token:
secure: DNTK4wihn5WZAjdhZ+6VBeCglveAy4gO4q5qZ86hhYZ7O26xpQ79XpcK0RyPfPMk
artifact: SFGraphics.zip
draft: false
prerelease: true
force_update: true
on:
branch: master
test: off
after_build:
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics\bin\Release\netstandard2.0\SFGraphics.dll"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics\bin\Release\netstandard2.0\SFGraphics.xml"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics.Utils\bin\Release\netstandard2.0\SFGraphics.Utils.dll"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics.Utils\bin\Release\netstandard2.0\SFGraphics.Utils.xml"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGenericModel\bin\Release\netstandard2.0\SFGenericModel.dll"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGenericModel\bin\Release\netstandard2.0\SFGenericModel.xml"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics.Controls\bin\Release\netstandard2.0\SFGraphics.Controls.dll"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics.Controls\bin\Release\netstandard2.0\SFGraphics.Controls.xml"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFShapes\bin\Release\netstandard2.0\SFShapes.dll"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFShapes\bin\Release\netstandard2.0\SFShapes.xml"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFShaderLoader\bin\Release\netstandard2.0\SFShaderLoader.dll"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFShaderLoader\bin\Release\netstandard2.0\SFShaderLoader.xml"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics.Timing\bin\Release\netstandard2.0\SFGraphics.Timing.dll"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics.Timing\bin\Release\netstandard2.0\SFGraphics.Timing.xml"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics.ShaderGen\bin\Release\netstandard2.0\SFGraphics.ShaderGen.dll"
- 7z a "SFGraphics.zip" "%APPVEYOR_BUILD_FOLDER%\Projects\SFGraphics.ShaderGen\bin\Release\netstandard2.0\SFGraphics.ShaderGen.xml"
- appveyor PushArtifact "SFGraphics.zip"