Skip to content

Commit 1b1a560

Browse files
committed
fixed:workflows/msbuild.yml
1 parent 9527e85 commit 1b1a560

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/msbuild.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,18 @@ jobs:
9191
./VSCopy_x86.bat
9292
./XEngine_HttpApp.exe -t
9393
shell: pwsh
94+
- name: Conditional Step for x64 Release
95+
if: matrix.configuration == 'Release' && matrix.platform == 'x64'
96+
run: |
97+
cp -r XEngine_Source/x64/Release/*.dll XEngine_Release/
98+
cp -r XEngine_Source/x64/Release/*.exe XEngine_Release/
99+
cp -r XEngine_Source/VSCopy_x64.bat XEngine_Release/
100+
cd XEngine_Release
101+
./VSCopy_x64.bat
102+
shell: pwsh
94103

95104
- name: Upload folder as artifact with x86
96-
if: matrix.configuration == 'Release' && matrix.platform == 'x86'
105+
if: matrix.configuration == 'Release' && matrix.platform == 'x64'
97106
uses: actions/upload-artifact@v4
98107
with:
99108
name: XEngine_HttpApp-x86_32-Windows

0 commit comments

Comments
 (0)