mirror of
https://gitlab.com/nullmax17/PlombirLauncher.git
synced 2025-03-14 18:01:12 +03:00
12 lines
321 B
Bash
Executable File
12 lines
321 B
Bash
Executable File
cd ../Launcher-UI
|
|
|
|
out_dir=../package/out/build
|
|
archieve_name=PlombirLinux-v1-2-1.tar.gz
|
|
|
|
rm -r $out_dir
|
|
|
|
dotnet publish -r linux-x64 -o $out_dir -p:PublishReadyToRun=true -p:PublishSingleFile=true --self-contained true -p:IncludeNativeLibrariesForSelfExtract=true
|
|
|
|
cd ../package/out
|
|
tar -czvf $archieve_name -C build/ .
|