File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,17 +38,21 @@ jobs:
3838 uses : microsoft/setup-msbuild@v2
3939
4040 - name : Build DCrypt
41- run : msbuild /t:build DCrypt\dcrypt.sln /p:Configuration="Release" /p:Platform=x64 /m
41+ run : |
42+ msbuild /t:build DCrypt\dcrypt.sln /p:Configuration="Release" /p:Platform=x64 /m
43+ msbuild /t:build DCrypt\dcrypt.sln /p:Configuration="Release" /p:Platform=ARM64 /m
4244
4345 - name : Upload DCrypt
4446 uses : actions/upload-artifact@v4.4.3
4547 with :
4648 name : DCrypt_X64
4749 path : |
48- DCrypt/Bin/Release_amd64/*.exe
4950 DCrypt/Bin/Release_amd64/*.dll
5051 DCrypt/Bin/Release_amd64/*.sys
5152 DCrypt/Bin/Release_amd64/*.pdb
53+ DCrypt/Bin/Release_arm64/*.dll
54+ DCrypt/Bin/Release_arm64/*.pdb
55+ DCrypt/Bin/Release_arm64/*.sys
5256
5357
5458 # sign:
Original file line number Diff line number Diff line change 1+ .OPTION EXPLICIT ;
2+ .Set CabinetName1=dcrypt.cab
3+ .Set CompressionType=LZX
4+ .Set CabinetFileCountThreshold=0
5+ .Set FolderFileCountThreshold=0
6+ .Set FolderSizeThreshold=0
7+ .Set MaxCabinetSize=0
8+ .Set MaxDiskFileCount=0
9+ .Set MaxDiskSize=0
10+
11+ .Set DestinationDir=dcrypt_x64;
12+ DCrypt/dcrypt.inf
13+ DCrypt/Bin/Release_amd64/dcrypt.sys
14+ DCrypt/Bin/Release_amd64/dcrypt.pdb
15+
16+ .Set DestinationDir=dcrypt_arm64;
17+ DCrypt/dcrypt.inf
18+ DCrypt/Bin/Release_arm64/dcrypt.pdb
19+ DCrypt/Bin/Release_arm64/dcrypt.sys
You can’t perform that action at this time.
0 commit comments