-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathdeploy.xml
96 lines (83 loc) · 2.51 KB
/
deploy.xml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="utf-8"?>
<deployconfig>
<compiler>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.com</compiler>
<buildcountheaderdir>.\</buildcountheaderdir>
<buildcountexe>buildcounter.exe</buildcountexe>
<compilerparams>GW2TacO.sln /rebuild Release</compilerparams>
<compiledexe>release\GW2TacO.exe</compiledexe>
<buildidformat>GW2TacO_%.3dr</buildidformat>
<versionformat>%.3d.%dr</versionformat>
<outputdir>Builds\</outputdir>
<archivemask>GW2TacO_%.3dr</archivemask>
<buildfile>
<sourcepath>release\</sourcepath>
<mask>GW2TacO.exe</mask>
</buildfile>
<buildfile>
<sourcepath>.\</sourcepath>
<mask>BsSndRpt.exe</mask>
<mask>BugSplat.dll</mask>
<mask>BugSplatRc.dll</mask>
</buildfile>
<buildfile>
<sourcepath>Data\</sourcepath>
<destpath>Data\</destpath>
<mask>*.png</mask>
</buildfile>
<buildfile>
<sourcepath>POIs\</sourcepath>
<destpath>POIs\</destpath>
<mask>!pois.txt</mask>
<mask>TacOMarkers.*</mask>
</buildfile>
<buildfile>
<sourcepath>POIs\Data\</sourcepath>
<destpath>POIs\Data\</destpath>
<mask>*.png</mask>
</buildfile>
<buildfile>
<sourcepath>.\</sourcepath>
<destpath>.\</destpath>
<mask>maptimer.xml</mask>
<mask>hpgrids.xml</mask>
<mask>categorydata.xml</mask>
<mask>locationaltimers.xml</mask>
<mask>UI_small.css</mask>
<mask>UI_normal.css</mask>
<mask>UI_large.css</mask>
<mask>UI_larger.css</mask>
<mask>UI.wbs</mask>
<mask>UI.xml</mask>
<mask>TacO_Language_*.xml</mask>
</buildfile>
<postbuildstep>
<command>SendPdbs</command>
<parameters>/credentials bugsplat_taco /b GW2TacO /a GW2TacO /d Release /v %s</parameters>
<message>Uploading PDBs to BugSplat</message>
</postbuildstep>
<postbuildstep>
<command>git</command>
<parameters>add ..</parameters>
<message>Adding TacO Changes</message>
</postbuildstep>
<postbuildstep>
<command>git</command>
<parameters>commit -m "GW2 TacO release %s"</parameters>
<message>Commiting TacO Changes</message>
</postbuildstep>
<postbuildstep>
<command>git</command>
<parameters>tag %s</parameters>
<message>Adding Tag to TacO</message>
</postbuildstep>
<postbuildstep>
<command>git</command>
<parameters>push</parameters>
<message>Pushing TacO Changes</message>
</postbuildstep>
<postbuildstep>
<command>gh</command>
<parameters>release create %s -t "GW2 TacO Release %s" -n "GW2 TacO release %s deployed by the automatic build system" ./%s</parameters>
<message>Creating Github Release</message>
</postbuildstep>
</deployconfig>