Update .exe name

This commit is contained in:
GabsPuNs
2026-05-28 23:21:59 -04:00
parent b14dfe07f7
commit f4db952884
2 changed files with 8 additions and 8 deletions

View File

@@ -51,10 +51,10 @@ jobs:
buildPresetAdditionalArgs: "['--target', 'Minecraft.Client', 'Minecraft.Server']"
- name: Client 7z Build
run: 7z a -r LCE${{ matrix.platform }}.7z ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Client/Release/* "-x!*.ipdb" "-x!*.iobj"
run: 7z a -r ProjectZenithX64.7z ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Client/Release/* "-x!*.ipdb" "-x!*.iobj"
- name: Server 7z Build
run: 7z a -r LCEServer${{ matrix.platform }}.7z ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/* "-x!*.ipdb" "-x!*.iobj"
run: 7z a -r ProjectZenithServerX64.7z ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/* "-x!*.ipdb" "-x!*.iobj"
- name: Run CMake (AVX Client Build)
uses: lukka/run-cmake@v10
@@ -67,14 +67,14 @@ jobs:
buildPresetAdditionalArgs: "['--target', 'Minecraft.Client']"
- name: Client AVX 7z Build
run: 7z a -r LCE${{ matrix.platform }}AVX.7z ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Client/Release/* "-x!*.ipdb" "-x!*.iobj"
run: 7z a -r ProjectZenithAVX.7z ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Client/Release/* "-x!*.ipdb" "-x!*.iobj"
- name: Stage artifacts
run: |
New-Item -ItemType Directory -Force -Path staging
Copy-Item LCE${{ matrix.platform }}.7z staging/
Copy-Item LCEServer${{ matrix.platform }}.7z staging/
Copy-Item LCE${{ matrix.platform }}AVX.7z staging/
Copy-Item ProjectZenithX64.7z staging/
Copy-Item ProjectZenithServerX64.7z staging/
Copy-Item ProjectZenithAVX.7z staging/
- name: Upload artifacts
uses: actions/upload-artifact@v6
@@ -138,7 +138,7 @@ jobs:
rm -rf runtime
mkdir -p runtime
7z x .artifacts/LCEServerWindows64.7z -oruntime
7z x .artifacts/ProjectZenithServerX64.7z -oruntime
- name: Compute image name
id: image

View File

@@ -38,7 +38,7 @@ set_source_files_properties(compat_shims.cpp PROPERTIES SKIP_PRECOMPILE_HEADERS
configure_compiler_target(Minecraft.Client)
set_target_properties(Minecraft.Client PROPERTIES
OUTPUT_NAME "Minecraft.Client"
OUTPUT_NAME "Project-Zenith"
VS_DEBUGGER_WORKING_DIRECTORY "$<TARGET_FILE_DIR:Minecraft.Client>"
)