File tree 1 file changed +19
-6
lines changed
1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change 37
37
EnableCompressionInSingleFile : true
38
38
IncludeNativeLibrariesForSelfExtract : true
39
39
PublishSingleFile : true
40
+
41
+ - uses : actions/upload-artifact@v4
42
+ with :
43
+ name : exe-${{ matrix.platform }}
44
+ path : src\bin\Release\**\publish\*.exe
40
45
41
46
- run : msbuild uwp\WinDynamicDesktop.Package.wapproj /v:m /p:AppxBundle=$env:AppxBundle /p:Configuration=$env:Configuration /p:Platform=$env:Platform /p:UapAppxPackageBuildMode=$env:UapAppxPackageBuildMode /p:UseTemporarySignCert=$env:UseTemporarySignCert
42
47
env :
@@ -46,15 +51,23 @@ jobs:
46
51
UapAppxPackageBuildMode : SideloadOnly
47
52
UseTemporarySignCert : true
48
53
49
- - uses : actions/upload-artifact@v4
50
- with :
51
- name : exe-${{ matrix.platform }}
52
- path : src\bin\Release\**\publish\*.exe
53
-
54
54
- uses : actions/upload-artifact@v4
55
55
with :
56
56
name : msix-${{ matrix.platform }}
57
57
path : uwp\AppPackages\**\*.msix
58
-
58
+
59
+ test :
60
+ runs-on : windows-latest
61
+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
62
+
63
+ steps :
64
+ - uses : actions/checkout@v4
65
+
66
+ - uses : actions/setup-dotnet@v4
67
+ with :
68
+ dotnet-version : 8.0.x
69
+
70
+ - run : dotnet restore src\WinDynamicDesktop.sln
71
+
59
72
- run : dotnet test --verbosity normal
60
73
working-directory : test
You can’t perform that action at this time.
0 commit comments