Fix zip command when packaging release

This commit is contained in:
rtm516
2026-03-17 22:36:52 +00:00
parent 6df8089003
commit b774d13806
2 changed files with 4 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ jobs:
buildPresetAdditionalArgs: "['--target', 'Minecraft.Server']" buildPresetAdditionalArgs: "['--target', 'Minecraft.Server']"
- name: Zip Build - name: Zip Build
run: 7z a -r LCEServer${{ matrix.platform }}.zip ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/* -x!*.ipdb -x!*.iobj run: 7z a -r LCEServer${{ matrix.platform }}.zip ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/* "-x!*.ipdb" "-x!*.iobj"
- name: Stage artifacts - name: Stage artifacts
run: | run: |
@@ -93,7 +93,7 @@ jobs:
files: | files: |
artifacts/* artifacts/*
docker-publish: docker:
name: Build and Push Docker Image name: Build and Push Docker Image
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
@@ -157,7 +157,7 @@ jobs:
MC_RUNTIME_DIR=runtime MC_RUNTIME_DIR=runtime
cleanup: cleanup:
needs: [build, release] needs: [build, release, docker]
if: always() if: always()
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

View File

@@ -49,7 +49,7 @@ jobs:
buildPresetAdditionalArgs: "['--target', 'Minecraft.Client']" buildPresetAdditionalArgs: "['--target', 'Minecraft.Client']"
- name: Zip Build - name: Zip Build
run: 7z a -r LCE${{ matrix.platform }}.zip ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Client/Release/* -x!*.ipdb -x!*.iobj run: 7z a -r LCE${{ matrix.platform }}.zip ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Client/Release/* "-x!*.ipdb" "-x!*.iobj"
- name: Stage artifacts - name: Stage artifacts
run: | run: |