-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreate_release_improved.bat
More file actions
34 lines (29 loc) · 958 Bytes
/
create_release_improved.bat
File metadata and controls
34 lines (29 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@echo off
echo Creating release package for DevServerManager v2.1.1 (Improved)
echo.
set RELEASE_NAME=DevServerManager-v2.1.1-Improved-Windows
if exist "%RELEASE_NAME%.zip" (
echo Removing existing release package...
del "%RELEASE_NAME%.zip"
)
echo Creating ZIP package...
powershell -command "Compress-Archive -Path 'release-v2.1.1-improved\*' -DestinationPath '%RELEASE_NAME%.zip' -Force"
if exist "%RELEASE_NAME%.zip" (
echo.
echo ✅ Release package created successfully: %RELEASE_NAME%.zip
echo.
for %%A in ("%RELEASE_NAME%.zip") do echo Package size: %%~zA bytes
echo.
echo 📋 Package contains:
echo - DevServerManager.exe (improved icon support)
echo - Configuration files
echo - Documentation (README.md, CHANGELOG.md)
echo - Antivirus solution guide
echo.
echo 🚀 Ready for GitHub release!
) else (
echo ❌ Failed to create release package
pause
exit /b 1
)
pause