Update linux.yml

This commit is contained in:
Twig6943 2026-03-06 22:18:23 +03:00 committed by GitHub
parent d760c53086
commit 10fdb634ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,9 +41,16 @@ jobs:
make -j$(nproc)
ls -lh
tree
7z a build.zip \
Minecraft.Client/Common Minecraft.Client/music Minecraft.Client/redist64 Minecraft.Client/Windows64 Minecraft.Client/Windows64Media x64/Release \
iggy_w64.dll MinecraftClient.exe mss64.dll || true
# Move stuff so that the game runs out of the box
mkdir -p tmp_build
cp -r Minecraft.Client/Common Minecraft.Client/music Minecraft.Client/redist64 Minecraft.Client/Windows64 Minecraft.Client/Windows64Media tmp_build/
cp -r x64/Release/* tmp_build/
cp MinecraftClient.exe mss64.dll tmp_build/
# Zip everything in tmp_build
7z a build.zip tmp_build/* -r -mx=9
EOF
- name: Upload artifact