Skip to content

Commit 0983703

Browse files
authored
Updated
1 parent 723def0 commit 0983703

2 files changed

Lines changed: 25 additions & 2 deletions

File tree

.github/workflows/sign-in-env-gha-ast.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

package.ddf

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

0 commit comments

Comments
 (0)