From 8b1f0a7d8c46c4cc3299e6512e025a5f42f04743 Mon Sep 17 00:00:00 2001 From: Andrew Molchanov Date: Fri, 3 Sep 2021 16:48:15 +0300 Subject: [PATCH] =?UTF-8?q?[FIX]=20GitHub=20Actions=20-=20=D0=9D=D0=B5?= =?UTF-8?q?=D0=BC=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=BF=D0=BE=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=B8=D0=BB=20Prebuild?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/push.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 55bb0772..7379ae59 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -55,18 +55,11 @@ jobs: - name: Prebuild release files if: startsWith(github.event.ref, 'refs/tags') run: | - cp modules/*_module/build/libs/*.jar artifacts/modules || true - cp modules/*_lmodule/build/libs/*.jar artifacts/lmodules || true - cp modules/*_swmodule/build/libs/*.jar artifacts/swmodules || true cd artifacts zip -9 LauncherBase.zip libraries.zip LaunchServer.jar - cd lmodules - zip -9 ../LauncherModules.zip * - cd ../modules - zip -9 ../LaunchServerModules.zip * - cd ../swmodules - zip -9 ../ServerWrapperModules.zip * - cd .. + zip -j -9 LaunchServerModules.zip ../modules/*_module/build/libs/*.jar + zip -j -9 LauncherModules.zip ../modules/*_lmodule/build/libs/*.jar + zip -j -9 ServerWrapperModules.zip ../modules/*_swmodule/build/libs/*.jar - name: Create release id: create_release