mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
[FIX] GitHub Actions - Немножко оптимизации
This commit is contained in:
parent
7af8c5bbac
commit
e778eb01b6
1 changed files with 5 additions and 8 deletions
13
.github/workflows/push.yml
vendored
13
.github/workflows/push.yml
vendored
|
@ -30,14 +30,12 @@ jobs:
|
||||||
- name: Create artifacts
|
- name: Create artifacts
|
||||||
run: |
|
run: |
|
||||||
mkdir -p artifacts/modules
|
mkdir -p artifacts/modules
|
||||||
cd LaunchServer/build/libs/
|
cd LaunchServer/build/libs
|
||||||
zip -r -9 ../../../artifacts/libraries.zip * -x "LaunchServer.jar" -x "LaunchServer-clean.jar"
|
zip -r -9 ../../../artifacts/libraries.zip * -x "LaunchServer.jar" -x "LaunchServer-clean.jar"
|
||||||
cp LaunchServer.jar ../../../artifacts/LaunchServer.jar
|
cp LaunchServer.jar ../../../artifacts/LaunchServer.jar
|
||||||
cd ../../../ServerWrapper/build/libs
|
cd ../../..
|
||||||
cp ServerWrapper.jar ../../../artifacts/ServerWrapper.jar
|
cp ServerWrapper/build/libs/ServerWrapper.jar artifacts/ServerWrapper.jar
|
||||||
cd ../../../LauncherAuthlib/build/libs
|
cp LauncherAuthlib/build/libs/LauncherAuthlib.jar artifacts/LauncherAuthlib.jar
|
||||||
cp LauncherAuthlib.jar ../../../artifacts/LauncherAuthlib.jar
|
|
||||||
cd ../../../
|
|
||||||
cp modules/*_module/build/libs/*.jar artifacts/modules || true
|
cp modules/*_module/build/libs/*.jar artifacts/modules || true
|
||||||
cp modules/*_lmodule/build/libs/*.jar artifacts/modules || true
|
cp modules/*_lmodule/build/libs/*.jar artifacts/modules || true
|
||||||
|
|
||||||
|
@ -58,9 +56,8 @@ jobs:
|
||||||
zip -r -9 Release.zip *
|
zip -r -9 Release.zip *
|
||||||
zip -j -9 LaunchServerModules.zip ../modules/*_module/build/libs/*.jar
|
zip -j -9 LaunchServerModules.zip ../modules/*_module/build/libs/*.jar
|
||||||
zip -j -9 LauncherModules.zip ../modules/*_lmodule/build/libs/*.jar
|
zip -j -9 LauncherModules.zip ../modules/*_lmodule/build/libs/*.jar
|
||||||
cd ../LaunchServer/build/libs/
|
cd ../LaunchServer/build/libs
|
||||||
zip -r -9 ../../../artifacts/LauncherBase.zip * -x "LaunchServer-clean.jar"
|
zip -r -9 ../../../artifacts/LauncherBase.zip * -x "LaunchServer-clean.jar"
|
||||||
cd ../../..
|
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
id: create_release
|
id: create_release
|
||||||
|
|
Loading…
Reference in a new issue