Skip to content

Commit c258c61

Browse files
committed
build: Fix appveyor executing in the wrong order
1 parent b1dadd7 commit c258c61

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

appveyor.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ build:
1616
project: MLAPI.sln
1717
verbosity: minimal
1818

19-
before_package:
19+
after_build:
2020
- cd C:\projects\mlapi
2121
- powershell "& "".\BuildUnityPackages.ps1"""
2222

@@ -38,7 +38,7 @@ for:
3838
- configuration: Debug
3939
artifacts:
4040
- path: 'MLAPI\bin\Debug\*\*MLAPI*'
41-
after_build:
41+
before_package:
4242
- cp MLAPI/bin/Debug/net35/MLAPI.* MLAPI/bin
4343
test:
4444
assemblies:
@@ -49,8 +49,8 @@ for:
4949
- configuration: Debug_Lite
5050
artifacts:
5151
- path: 'MLAPI\bin\Lite\Debug\*\*MLAPI*'
52-
after_build:
53-
- cp MLAPI/bin/Lite/Debug/net35/*MLAPI* MLAPI/bin
52+
before_package:
53+
- cp MLAPI/bin/Lite/Debug/net35/MLAPI.* MLAPI/bin
5454
test:
5555
assemblies:
5656
- 'MLAPI-Tests\bin\Lite\Debug\*\MLAPI-Tests.dll'
@@ -60,8 +60,8 @@ for:
6060
- configuration: Release
6161
artifacts:
6262
- path: 'MLAPI\bin\Release\*\*MLAPI*'
63-
after_build:
64-
- cp MLAPI/bin/Release/net35/*MLAPI* MLAPI/bin
63+
before_package:
64+
- cp MLAPI/bin/Release/net35/MLAPI.* MLAPI/bin
6565
test:
6666
assemblies:
6767
- 'MLAPI-Tests\bin\Release\*\MLAPI-Tests.dll'
@@ -77,8 +77,8 @@ for:
7777
- configuration: Release_Lite
7878
artifacts:
7979
- path: 'MLAPI\bin\Lite\Release\*\*MLAPI*'
80-
after_build:
81-
- cp MLAPI/bin/Lite/Release/net35/*MLAPI* MLAPI/bin
80+
before_package:
81+
- cp MLAPI/bin/Lite/Release/net35/MLAPI.* MLAPI/bin
8282
test:
8383
assemblies:
8484
- 'MLAPI-Tests\bin\Lite\Release\*\MLAPI-Tests.dll'

0 commit comments

Comments
 (0)